From: Olivier Tétard Date: Tue, 24 Nov 2015 10:19:58 +0000 (+0100) Subject: Retourner une erreur 503 si l’analyse du JSON ne marche pas X-Git-Url: http://olivier.miskin.fr/git/?a=commitdiff_plain;p=femtoblackweb.git Retourner une erreur 503 si l’analyse du JSON ne marche pas --- diff --git a/femtoblackweb.py b/femtoblackweb.py index 28b5f0b..399a5a8 100644 --- a/femtoblackweb.py +++ b/femtoblackweb.py @@ -133,5 +133,9 @@ def ajax_run_orders(): sock.send(bytes(json.dumps({'top': filename}), 'utf-8')) sock.close() + return jsonify(result='ok') + + abort(503) + if __name__ == "__main__": app.run(debug=True)