Skip to content

Commit

Permalink
Error initialization with tornado. (#510)
Browse files Browse the repository at this point in the history
max_message_size has to be integer when initializating using tornado.
  • Loading branch information
hbcarlos committed Jun 4, 2020
1 parent ad61c2a commit 5627cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosbridge_server/src/rosbridge_server/websocket_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class RosbridgeWebSocket(WebSocketHandler):
fragment_timeout = 600 # seconds
# protocol.py:
delay_between_messages = 0 # seconds
max_message_size = None # bytes
max_message_size = 10 * 1024 * 1024 # bytes
unregister_timeout = 10.0 # seconds
bson_only_mode = False

Expand Down

0 comments on commit 5627cd6

Please sign in to comment.