-
Notifications
You must be signed in to change notification settings - Fork 441
Sending big blocks of data triggers async_tcp task watchdog #121
Comments
Can confirm this helps for me as well - left a comment on the PR how to use the changed code from a platformio project. |
And this also fixed my issues when serving large files via ESPAsyncWebServer - so many thanks for posting this @detmot5 ! |
Where is |
what do you mean? There's only one .cpp file ;) |
Oh. I got a tweaked version of the AsyncTCP lib by @yubox-node-org. |
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions. |
You helped me a lot , BIG THANKS !!! |
Hey,
When serving larger files (like 250KB) i got problem with triggering wdt in async_tcp task. After disabling it website still failed to load.
After some research I found source of the problem - too small size of _async_queue. Changing it to 256 or 512 solves my issue.
It worked for me.
The text was updated successfully, but these errors were encountered: