-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
Closed
Labels
tlsIssues and PRs related to the tls subsystem.Issues and PRs related to the tls subsystem.
Description
I've been experiencing some issues with a cluster https server.
It throws the following error:
net.js:729
if (req.async && this._handle.writeQueueSize != 0)
^
TypeError: Cannot read property 'writeQueueSize' of null
at TLSSocket.Socket._writeGeneric (net.js:729:32)
at TLSSocket.Socket._writev (net.js:737:8)
at doWrite (_stream_writable.js:327:12)
at clearBuffer (_stream_writable.js:416:5)
at onwrite (_stream_writable.js:368:7)
at WriteWrap.afterWrite [as oncomplete] (net.js:824:12)
Worker 33233 died -> 33245 born.
I went ahead and change that line for:
if (req.async && this._handle && this._handle.writeQueueSize != 0)
Recompile node and it seems to have solve the problem.
But I don't really know why it ocurrs and how to replicate it, I just see it almost every 10 minutes in my logs.
sutee3305 and aaronwng
Metadata
Metadata
Assignees
Labels
tlsIssues and PRs related to the tls subsystem.Issues and PRs related to the tls subsystem.