-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
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.
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 == "*".
fyi.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels