Test env updates for dmaap messages in batch and for running external agent
[nonrtric.git] / test / common / extract_sdnc_reply.py
index cb80e5e..9158edc 100644 (file)
@@ -32,8 +32,12 @@ try:
         resp=status
         if ( 'body' in output.keys()):
             body=str(output['body'])
-            bodyJson=json.loads(body)
-            resp=str(json.dumps(bodyJson))+str(status)
+            try:
+                bodyJson=json.loads(body)
+                resp=str(json.dumps(bodyJson))+str(status)
+            except Exception as e1:
+                resp=body+str(status)
+
         print(resp)
 
 except Exception as e: