|
@@ -79,7 +79,9 @@ def after_request(response : flask.Response):
|
|
|
|
|
|
|
|
|
|
def JsonStringToResponse(string : str) :
|
|
def JsonStringToResponse(string : str) :
|
|
- return jsonify(json.loads(string))
|
|
|
|
|
|
+ resp = jsonify(json.loads(string))
|
|
|
|
+ resp.status_code = 200
|
|
|
|
+ return
|
|
|
|
|
|
def run() :
|
|
def run() :
|
|
global __server_process__
|
|
global __server_process__
|