aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-30 12:43:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-30 12:43:49 +0000
commit4cba2ea1ad86bd1ce1c1f0312ee30d5bec074ad9 (patch)
treea2fe99533aac9efdc9cd2217322449763440b7a5
parent14cb9d296cdc498596291749814f192b8d181ef8 (diff)
attempt to fix the notorious test 91 failures
-rw-r--r--CHANGES7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 40a5e0d25..7380c739d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,13 @@
Changelog
Daniel(30 January 2004)
+- Added code that attempts to fix the test 91 failure. As has been figured out
+ by Patrick Smith, the error happens because we re-use a connection that the
+ server is just about to close and we even manage to send away the request
+ without seeing an error. On the first read attempt we get a ECONNRESET.
+ Starting now, we attempt to detect this and if so, we retry the request on a
+ fresh connection.
+
- I added test case 510 which is a custom program that does a POST using a
read callback, with chunked transfer-encoding.