Browse Source

fix

Reviewed-By: Fedor Indutny <fedor@indutny.com>
PR-URL: https://github.com/joyent/node/pull/25739
v0.12-staging
Fedor Indutny 10 years ago
parent
commit
b8d47a7b6f
  1. 5
      test/simple/test-tls-new-session-hang.js

5
test/simple/test-tls-new-session-hang.js

@ -25,10 +25,9 @@ var server = tls.createServer({
socket.destroySoon();
});
server.on('resumeSession', common.mustCall(function() {
// Should not be actually called
server.on('resumeSession', function (id, callback) {
assert(false);
});
}, 0));
server.listen(common.PORT, function() {
var client = tls.connect({

Loading…
Cancel
Save