esp_websocket_client: bump default task stack size to 8192 bytes #42
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This can alleviate crashes with
wss://
addresses - 4KB might not be sufficient for the WebSocket client with TLS overhead - this change bumps the task stack size to match that of the main thread (8KB).I was seeing crashes when trying to use
wss://
addresses -After doing some testing by bumping the
task_stack
to 8KB and adding:at the end of the WEBSOCKET_EVENT_DATA case, I discovered that we were using excess of 4KB -
(64965) main: websocket_task min free stack: 3956 bytes
(8192 − 3956 ≈ 4236 bytes) - roughly 200 bytes too much.After the bump, everything works as expected.