From e5e001fd12a646dac23cbc8d34a0cf40bf264d50 Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Fri, 4 Jan 2019 11:29:00 -0500 Subject: Fix API serialization Under special circumstances, the 'context' field may be empty and serialization will fail, but that field is optional so we will ignore errors. Change-Id: I2e1e47a2f7d507e45b171f80aa241c8026cfc1a5 Signed-off-by: Parker Berberian --- dashboard/src/api/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard/src/api/models.py b/dashboard/src/api/models.py index cc25f82..a1fedfe 100644 --- a/dashboard/src/api/models.py +++ b/dashboard/src/api/models.py @@ -350,7 +350,10 @@ class AccessConfig(TaskConfig): d['access_type'] = self.access_type d['user'] = self.user.id d['revoke'] = self.revoke - d['context'] = json.loads(self.context) + try: + d['context'] = json.loads(self.context) + except: + pass return d def get_delta(self): -- cgit 1.2.3-korg