hack for ending https connections
This commit is contained in:
parent
94f8368cf9
commit
73f4ec51fd
14
lib/http.js
14
lib/http.js
@ -833,11 +833,17 @@ function connectionListener(socket) {
|
||||
if (message._last) {
|
||||
// No more messages to be pushed out.
|
||||
|
||||
// HACK: need way to do this with socket interface
|
||||
if (socket._writeQueue.length) {
|
||||
socket.__destroyOnDrain = true; //socket.end();
|
||||
if (!socket._writeQueue) {
|
||||
// Putting this here for https. Really need to add below hack to
|
||||
// both socket and https interfaces.
|
||||
socket.end();
|
||||
} else {
|
||||
socket.destroy();
|
||||
// HACK: need way to do this with socket interface
|
||||
if (socket._writeQueue.length) {
|
||||
socket.__destroyOnDrain = true; //socket.end();
|
||||
} else {
|
||||
socket.destroy();
|
||||
}
|
||||
}
|
||||
|
||||
} else if (socket._outgoing.length) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user