-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tungstenite buffering parameters for uart WS
When tungstenite was updated to 0.20.x, the structure of the buffering parameters exposed by its websocket configuration changed significantly. The parameters chosen can cause `WriteBufferFull` errors if enough output accumulates in the history buffer to be sent in a message which exceeds the unnecessarily small `max_write_buffer_size`. Using the configuration defaults, which feature an unbounded `max_write_buffer_size`, should provide acceptable behavior. Fixes #540
- Loading branch information
Showing
2 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters