From e90193610f292c7d000f51592d03ebefdb8cd8d6 Mon Sep 17 00:00:00 2001 From: dfilppi Date: Sat, 9 Dec 2017 20:16:48 +0000 Subject: Null POST/PUT bodies were causing REST failures Change-Id: I11725dfd1feb7b080160a361cd9fec65bba4bf78 Issue-ID: SO-356 Signed-off-by: DeWayne Filppi --- .../src/main/python/aria-rest/aria_rest/rest.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'aria') diff --git a/aria/aria-rest-server/src/main/python/aria-rest/aria_rest/rest.py b/aria/aria-rest-server/src/main/python/aria-rest/aria_rest/rest.py index 45fb4299d9..7b9223d1c9 100644 --- a/aria/aria-rest-server/src/main/python/aria-rest/aria_rest/rest.py +++ b/aria/aria-rest-server/src/main/python/aria-rest/aria_rest/rest.py @@ -116,7 +116,7 @@ def install_template(template_name, model_storage, resource_storage, elif rtype == "json": - body = request.json + body = request.json or {} # Check body if "service_template_path" in body: @@ -169,7 +169,7 @@ def validate_template(model_storage, resource_storage, plugin_manager, logger): """ Validates a TOSCA template """ - body = request.json + body = request.json or {} # Check body if "service_template_path" in body: @@ -385,7 +385,7 @@ def create_service(template_id, service_name, model_storage, resource_storage, """ Creates a service from the specified service template """ - body = request.json + body = request.json or {} inputs = {} if 'inputs' in body: inputs = body['inputs'] @@ -542,7 +542,7 @@ def start_execution( """ Start an execution for the specified service """ - body = request.json + body = request.json or {} executor = DryExecutor( ) if 'executor' in body and body['executor'] == 'dry' else None @@ -585,7 +585,7 @@ def resume_execution( """ Resume the specified execution """ - body = request.json + body = request.json or {} execution = model_storage.execution.get(execution_id) if execution.status != execution.status.CANCELLED: return "cancelled execution cannot be resumed", 400 @@ -619,7 +619,7 @@ def cancel_execution(execution_id, model_storage, logger): Cancel the specified execution """ logger.info("cancelling execution {}".format(execution_id)) - body = request.json + body = request.json or {} try: execution = model_storage.execution.get(execution_id) -- cgit 1.2.3-korg