Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! net: always invoke after-write callback
  • Loading branch information
addaleax committed Nov 11, 2018
commit c54ef5348516037de0c8f4a788279c7430d85c80
2 changes: 1 addition & 1 deletion test/parallel/test-tls-invoke-queued.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const server = tls.createServer({
c.write('world!', null, common.mustCall(function() {
c.destroy();
}));
// Data on next _write() will be written but callback will not be invoked
// Data on next _write() will be written, and the cb will still be invoked
c.write(' gosh', null, common.mustCall());
}));

Expand Down