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
_do_connect() fails if socket_type is "udp" and path is specified instead of host, port
In this case, a UDP socket is created, and then its :connect() method is called, but there is no such method, so attempt to call method 'connect' (a nil value) error is thrown.
_do_connect()
fails ifsocket_type
is"udp"
andpath
is specified instead ofhost, port
In this case, a UDP socket is created, and then its
:connect()
method is called, but there is no such method, soattempt to call method 'connect' (a nil value)
error is thrown.A simple fix is here: #35
The text was updated successfully, but these errors were encountered: