Skip to content

Commit

Permalink
update: サーバが複数リクエストを並行処理できるように
Browse files Browse the repository at this point in the history
  • Loading branch information
KakinokiKanta committed Nov 15, 2024
1 parent c845b6c commit 08edd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/flask_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,4 @@ def send_run_log() -> jsonify:
ip = connect_interface.getsockname()[0]
connect_interface.close()

app.run(host=ip, port=8000)
app.run(host=ip, port=8000, threaded=True)

0 comments on commit 08edd94

Please sign in to comment.