Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Right way to fix the socket.destroy issue (Node v8.12.0) #263

Merged
merged 1 commit into from
Sep 22, 2018
Merged
Changes from all commits
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
7 changes: 3 additions & 4 deletions lib/needle.js
Original file line number Diff line number Diff line change
@@ -468,9 +468,7 @@ Needle.prototype.send_request = function(count, method, uri, config, post_data,
// for an example case, see test/long_string_spec.js. we make sure this
// scenario ocurred by verifying the socket's writable & destroyed states.
function on_socket_end() {
// socket.ssl is present on node versions 8.12.0, where the socket.destroy
// logic was apparently fixed.
if (!this.writable && this.destroyed === false && !this.ssl) {
if (!this.writable && this.destroyed === false) {
this.destroy();
had_error(new Error('Remote end closed socket abruptly.'))
}
@@ -714,9 +712,10 @@ Needle.prototype.send_request = function(count, method, uri, config, post_data,
set_timeout('response', config.response_timeout);
}

// console.log(socket);
if (!socket.on_socket_end) {
socket.on_socket_end = on_socket_end;
socket.on('end', socket.on_socket_end);
socket.once('end', function() { process.nextTick(on_socket_end.bind(socket)) });
}
})

2 changes: 1 addition & 1 deletion test/long_string_spec.js
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ describe('when posting a very long string', function() {
}

try {
needle.post('http://google.com', { data: get_string(Math.pow(2, 20)) }, finished)
needle.post('https://google.com', { data: get_string(Math.pow(2, 20)) }, finished)
} catch(e) {
error = e;
}