From c7f773b027019086153f0260b507c8fa173ee5e8 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 24 Jun 2020 10:05:22 +0200 Subject: Fix API serialization issues --- opendc/api/v2/traces/traceId/endpoint.py | 2 +- opendc/api/v2/traces/traceId/jobs/endpoint.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'opendc/api/v2/traces') diff --git a/opendc/api/v2/traces/traceId/endpoint.py b/opendc/api/v2/traces/traceId/endpoint.py index fe837c73..720d3fd0 100644 --- a/opendc/api/v2/traces/traceId/endpoint.py +++ b/opendc/api/v2/traces/traceId/endpoint.py @@ -12,7 +12,7 @@ def GET(request): request.check_required_parameters(path={'traceId': 'int'}) except exceptions.ParameterError as e: - return Response(400, e.message) + return Response(400, str(e)) # Instantiate a Trace and make sure it exists diff --git a/opendc/api/v2/traces/traceId/jobs/endpoint.py b/opendc/api/v2/traces/traceId/jobs/endpoint.py index 671e4d83..eec52b56 100644 --- a/opendc/api/v2/traces/traceId/jobs/endpoint.py +++ b/opendc/api/v2/traces/traceId/jobs/endpoint.py @@ -13,7 +13,7 @@ def GET(request): request.check_required_parameters(path={'traceId': 'int'}) except exceptions.ParameterError as e: - return Response(400, e.message) + return Response(400, str(e)) # Instantiate a Trace and make sure it exists -- cgit v1.2.3