Skip to content

Commit 89692ff

Browse files
sam-githubBethGriggs
authored andcommittedMar 24, 2020
test: end tls connection with some data
In openssl-1.1.1e the client doesn't seem to like having the TLS connection shut down with no data sent, so send an empty string. A number of related issues showed up in the TLS1.3 port, so this is not entirely surprising. PR-URL: #32328 Backport-PR-URL: #32443 Fixes: #32210 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 76033c5 commit 89692ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/parallel/test-tls-session-cache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function doTest(testOptions, callback) {
6464
throw er;
6565
});
6666
++requestCount;
67-
cleartext.end();
67+
cleartext.end('');
6868
});
6969
server.on('newSession', function(id, data, cb) {
7070
++newSessionCount;

0 commit comments

Comments
 (0)
Please sign in to comment.