-
Notifications
You must be signed in to change notification settings - Fork 67
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
"Unsolicited response received on idle HTTP channel starting with "0\r\n\r\n"; err=<nil>" #201
Comments
Thank you for submitting your first issue to this repository! A maintainer will be here shortly to triage and review.
Finally, remember to use https://discuss.ipfs.io if you just need general support. |
@MichaelMure any ideas/thoughts? |
Ultimately the cause is that something is violating the HTTP state machine. In golang/go#19895 this happened on a HEAD request that returned a chunked-encoded body...the Go HTTP client read the head request but not the body, since HEADs don't have bodies. The leftover bytes aren't a valid HTTP message, hence the error. If you are still having this issue, try turning on debug logging in the AWS SDK to show the HTTP reqs and responses. If server responses look fine then it is likely a bug somewhere client-side. |
@aschmahmann I don't see any logs like that in our systems. |
I have built ipfs with this plugin, and everything works fine, I see my files in S3 bucket. But in logs I see a lot of " Unsolicited response received on idle HTTP channel starting with "0\r\n\r\n"; err=" messages. What might cause them? And how to fix? Any ideas?
The text was updated successfully, but these errors were encountered: