Skip to content

Commit

Permalink
remove threaded keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Yang committed Dec 6, 2018
1 parent 2a760b4 commit f467c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.py
Expand Up @@ -15,4 +15,4 @@
parser.add_argument('--port', '-p', type=int, default=5000)
args = parser.parse_args()
logging.info(f'Starting dev server at http://0.0.0.0:{args.port}')
socketio.run(app, port=args.port, debug=True, threaded=True)
socketio.run(app, port=args.port, debug=True)
2 changes: 1 addition & 1 deletion fgclassifier/visualizer/app.py
Expand Up @@ -86,4 +86,4 @@ def autoindex(path='.'):

if __name__ == '__main__':
port = os.environ.get('PORT', 5000)
socketio.run(app, host='0.0.0.0', threaded=True, port=port)
socketio.run(app, host='0.0.0.0', port=port)

0 comments on commit f467c82

Please sign in to comment.