-
|
First, excellent library, and thank you very much for contributing it!!! I did see this issue which had this message as part of it #140, but in that issue the requests failed and seemed to be memory related. I think I am ok with memory. --- Memory Report --- I updated my platform to use the pio fork, mainly because I want to use a library that I think wants to use gcc 14 / gnu+23 Now I get the following message when pushing to RTDB and posting Messaging. The data shows up in the database and the message is received, so I think everything is still working fine, it's just this message. Here is the relevant portion of my platformio.ini file |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
That is the You should check its connection status to make sure it is connected to server before set the timeout or do something with socket via setting its options. |
Beta Was this translation helpful? Give feedback.
-
|
I am posting this answer in case anyone else using this (awesome) library somehow hits this and thinks it a library issue. It turns out this was an issue with NetworkClientSecure that was fixed in this PR. I found it after I came up with the same fix and did a last search of the issues on arduino-esp32 before submitting my own issue, which would have been marked a duplicate. platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip I just upgraded to the latest available at the time of this writing and the messages are gone with out me having to hack NetworkClientSecure |
Beta Was this translation helpful? Give feedback.
I am posting this answer in case anyone else using this (awesome) library somehow hits this and thinks it a library issue.
It turns out this was an issue with NetworkClientSecure that was fixed in this PR. I found it after I came up with the same fix and did a last search of the issues on arduino-esp32 before submitting my own issue, which would have been marked a duplicate.
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip
was a bad choice. It has the checks that triggered the messages I posted, but not the fix to NetworkClientSecure.
I just upgraded to the latest available at the time of this writing and the messages are go…