The issue was never resolved. I had to try HTTP posting to the server, and if it failed twice, then I just deemed the server dead for the remainder of the application's lifetime.
Not ideal at all, but was good enough for my purpose. I hope it gets resolved!
Search found 2 matches
- Sat Feb 23, 2019 9:06 pm
- Forum: General Discussion
- Topic: How to prevent http request from blocking task for too long?
- Replies: 5
- Views: 10378
- Mon Nov 19, 2018 10:54 pm
- Forum: General Discussion
- Topic: How to prevent http request from blocking task for too long?
- Replies: 5
- Views: 10378
How to prevent http request from blocking task for too long?
Hi all, I'm using esp_http_client to make requests to a server. However, when the server is down, the http request is blocking the rest of the task for a very long time. I want to make it so that if the server is offline and the client can't post, it should immediately stop. Is this possible to do? ...