We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214cb27 commit fa15fafCopy full SHA for fa15faf
Firmware/RTK_Everywhere/HTTP_Client.ino
@@ -355,7 +355,7 @@ void httpClientUpdate()
355
if (!httpClient->begin(*httpSecureClient->getClient(), THINGSTREAM_ZTPURL))
356
{
357
systemPrintln("ERROR: Failed to start httpClient!\r\n");
358
- httpClientShutdown();
+ httpClientRestart(); // I _think_ we want to restart here - i.e. retry after the timeout?
359
break;
360
}
361
@@ -401,7 +401,7 @@ void httpClientUpdate()
401
// "HTTP response error -11: "
402
if (httpResponseCode == -11)
403
404
- httpClientShutdown(); // Try again
405
406
407
0 commit comments