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 4aeab61 commit 5933514Copy full SHA for 5933514
src/HTTPRequest.cpp
@@ -106,9 +106,6 @@ bool HTTPRequest::requestComplete() {
106
void HTTPRequest::discardRequestBody() {
107
byte buf[16];
108
while(!requestComplete()) {
109
- delay(500);
110
- Serial.println("Discarding 16 bytes of request body...");
111
- Serial.printf("Remaining content is %i bytes\n", _remainingContent);
112
readBytes(buf, 16);
113
}
114
0 commit comments