Logs littered with I/O exception, connection reset #403
Unanswered
etlweather
asked this question in
Q&A
Replies: 1 comment
-
The fault is in the server, which responds with "Connection: keep-alive" even though it doesn't support reusing connections. The solution is to configure the http client to not reuse connections. This requires a small hack:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I
put
a file, I see this in my logs:On the WebDAV server (based on NGINX):
The
put
works, the file is there and readable.My code to save a file is as follow:
Is there anything I'm doing wrong or is this a bug? It's functionally working but annoying to get these notices in the logs if there is nothing wrong.
Beta Was this translation helpful? Give feedback.
All reactions