set flask debug flag to False

This commit is contained in:
Ricardo Sanchez Alba 2023-05-13 11:15:44 -06:00
parent 27766b2478
commit 4da3607b1b

View File

@ -17,4 +17,4 @@ def do_print():
return "OK" return "OK"
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0', port=9999) app.run(debug=False, host='0.0.0.0', port=9999)