-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http responses are being sent one byte at a time #16
Comments
server.setNoDelay(); makes no difference |
It seems to be a bug in how aWot response objects write non const byte arrays to the wifi-client. |
tried using res.write like so: uint8_t buffer[200];
json_obj.printTo((char *)buffer, sizeof(buffer));// this is great except it seems to be adding quotation marks around what it is sending
res.success("application/json");
res.write(buffer, sizeof(buffer)); which still resulted in single byte packets |
Tried Both:
and
with no improvements |
Another potential lead: Advanced REST Client Thinks all responses including get/post from all endpoints of iotHubLib are empty. |
This actually becomes a problem now, as this limits the time it takes for an actor to process a request. |
No description provided.
The text was updated successfully, but these errors were encountered: