You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On linux, call to connect
socket.connect("unix:///home/mypath")
fails with
RangeError: "port" option should be >= 0 and < 65536: NaN
at lookupAndConnect (net.js:970:13)
at Socket.connect (net.js:945:5)
at Socket.connect (net.js:904:37)
at SubSocket.Socket.connect (/home/app/node_modules/axon/lib/sockets/sock.js:295:8)
at Timeout._onTimeout (/home/app/node_modules/axon/lib/sockets/sock.js:280:12)
First time called, the port containing "unix:///home/mypath" is parsed so port="/home/mypath"
On linux, call to connect
socket.connect("unix:///home/mypath")
fails with
First time called, the port containing "unix:///home/mypath" is parsed so port="/home/mypath"
axon/lib/sockets/sock.js
Line 251 in df2f5bb
On timeout and subsequent retry, port of "/home/mypath" will fail because protocol "unix://" has been stripped from port.
The text was updated successfully, but these errors were encountered: