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
where EM.connect() eventually goes down to a gethostname call.
Simple hack is to update that to something like: EM.connect(@uri.host.tr('[]', '') ....
I'm not sure what the right thing to do here is, would love help figuring out if this issue is in the right place too. Is this a problem ruby's uri, and stripping [] from some_uri.host?
The text was updated successfully, but these errors were encountered:
IPv6 addresses can have brackets around their host, this causes issues here:
nats.rb/lib/nats/client.rb
Line 229 in 1bb2325
EM.connect()
eventually goes down to agethostname
call.Simple hack is to update that to something like:
EM.connect(@uri.host.tr('[]', '') ....
I'm not sure what the right thing to do here is, would love help figuring out if this issue is in the right place too. Is this a problem ruby's
uri
, and stripping[]
fromsome_uri.host
?The text was updated successfully, but these errors were encountered: