diff --git a/myfunction1/run.py b/myfunction1/run.py index 3e1ddc5..6aec292 100644 --- a/myfunction1/run.py +++ b/myfunction1/run.py @@ -36,7 +36,7 @@ # All data to be returned to the client gets put into this dict returnData = { #HTTP Status Code: - "status": 200, + "status": str(200), #Response Body: "body": "

Azure Works :)

", @@ -50,4 +50,4 @@ # Output the response to the client output = open(os.environ['res'], 'w') -output.write(json.dumps(returnData)) \ No newline at end of file +output.write(json.dumps(returnData))