Skip to content

Commit

Permalink
http: remove duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Aug 9, 2019
1 parent 885c644 commit 9300b4b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/_http_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,13 +441,9 @@ function connectionListenerInternal(server, socket) {
socket._paused = false;
}


function updateOutgoingData(socket, state, delta) {
state.outgoingData += delta;
if (socket._paused &&
state.outgoingData < socket.writableHighWaterMark) {
return socketOnDrain(socket, state);
}
socketOnDrain(socket, state);
}

function socketOnDrain(socket, state) {
Expand Down

0 comments on commit 9300b4b

Please sign in to comment.