Skip to content

Commit

Permalink
Large limit on socket.io
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoes committed Oct 15, 2023
1 parent 8ff5337 commit 6579ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion learning-environment/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret!'
socketio = SocketIO(app, async_mode='eventlet', cors_allowed_origins="*")
socketio = SocketIO(app, async_mode='eventlet', cors_allowed_origins="*", max_http_buffer_size=1e8)

sessions = {} # indexed by session name

Expand Down

0 comments on commit 6579ac5

Please sign in to comment.