We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi there, with the new golang version (and its built in url lib):
if !n.bound { _, n.port, err = bind(n.inbox, "tcp://*:*") if err != nil { return err } n.bound = true }
in node.go does not work anymore.
node.go
my workaround was to say:
if !n.bound { _, n.port, err = bind(n.inbox, "tcp://*:0") if err != nil { return err } n.bound = true }
in node.go
and:
if p == "0" { ...
in node.go later. instead of if p == "*".
if p == "*"
fyi.
The text was updated successfully, but these errors were encountered:
I had the same issue and the changes suggested by @omani fixes it. According to the net/url docs:
validOptionalPort reports whether port is either an empty string or matches /^:\d*$/
@omani can you do a pull request or should I?
Sorry, something went wrong.
yeah will do.
done.
Successfully merging a pull request may close this issue.
hi there,
with the new golang version (and its built in url lib):
in
node.go
does not work anymore.my workaround was to say:
in
node.go
and:
in
node.go
later. instead ofif p == "*"
.fyi.
The text was updated successfully, but these errors were encountered: