diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-08-11 14:00:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-08-28 16:44:49 +0200 |
commit | 3533def3d556e09f178e52e37b89fe8015b907f9 (patch) | |
tree | b0739d3a99475488a66e92ca29ed02521ae8a32f /tests | |
parent | a6ddd6555e02bb3114e3d193f7474c402269a040 (diff) | |
download | curl-3533def3d556e09f178e52e37b89fe8015b907f9.tar.gz |
http2: make sure stream errors don't needlessly close the connection
With HTTP/2 each transfer is made in an indivial logical stream over the
connection, making most previous errors that caused the connection to get
forced-closed now instead just kill the stream and not the connection.
Fixes #941
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/test161 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/data/test161 b/tests/data/test161 index c7f4b632c..91a3388fc 100644 --- a/tests/data/test161 +++ b/tests/data/test161 @@ -32,8 +32,8 @@ ftp://%HOSTIP:%FTPPORT/161 # Verify data after the test has been "shot" <verify> -# This gets QUIT sent because CURLE_PARTIAL_FILE does NOT mark the control -# connection as bad +# This doesn't send QUIT because of known bug: +# "7.8 Premature transfer end but healthy control channel" <protocol> USER anonymous
PASS ftp@example.com
@@ -42,7 +42,6 @@ EPSV TYPE I
SIZE 161
RETR 161
-QUIT
</protocol> # CURLE_PARTIAL_FILE = 18 <errorcode> |