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
When I spin up a node with iptb auto --type dockeripfs --count 1, starting the node with the --wait flag times out:
$ iptb start --wait
node QmbNGJ8hfSaepK96iZAycm3di6so9EU6syPEJKnqgVmxgn failed to come online in given time period
node[0]
gx/ipfs/QmckeQ2zrYLAXoSHYTGn5BDdb22BqbUoHEHm8KZ9YWRxd1/iptb/commands.mapWithOutput.func1
/home/grish/.go/src/gx/ipfs/QmckeQ2zrYLAXoSHYTGn5BDdb22BqbUoHEHm8KZ9YWRxd1/iptb/commands/utils.go:195
runtime.goexit
/usr/lib/go/src/runtime/asm_amd64.s:1337
However, the node is up when I run iptb shell 0 or check the container with docker container ls. I tried manually setting the IP address for the node from its default of 0.0.0.0 to the IP given by docker inspect <container> in the tryAPICheck() function, which fixed the issue. I glanced back at older commits of IPTB where iptb start --wait worked, but the code looks similar to the current implementation (it is late though, and I wasn't very thorough).
When I spin up a node with
iptb auto --type dockeripfs --count 1, starting the node with the--waitflag times out:However, the node is up when I run
iptb shell 0or check the container withdocker container ls. I tried manually setting the IP address for the node from its default of0.0.0.0to the IP given bydocker inspect <container>in thetryAPICheck()function, which fixed the issue. I glanced back at older commits of IPTB whereiptb start --waitworked, but the code looks similar to the current implementation (it is late though, and I wasn't very thorough).Any ideas what might be happening? @travisperson, @bigs?