fix(bootstrap): bootstrap sequentially
The default timeout is 10s so this won't take that long anyways. On the other hand, if we do this all at once, we max the swarms dial queue.
Showing
... | ... | @@ -4,7 +4,6 @@ go 1.12 |
require ( | ||
github.com/gogo/protobuf v1.3.0 | ||
github.com/google/uuid v1.1.1 | ||
github.com/hashicorp/golang-lru v0.5.3 | ||
github.com/ipfs/go-cid v0.0.3 | ||
github.com/ipfs/go-datastore v0.1.0 | ||
... | ... | @@ -25,7 +24,6 @@ require ( |
github.com/multiformats/go-multiaddr v0.0.4 | ||
github.com/multiformats/go-multiaddr-dns v0.0.3 | ||
github.com/multiformats/go-multistream v0.1.0 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.3.0 | ||
github.com/whyrusleeping/base32 v0.0.0-20170828182744-c30ac30633cc | ||
go.opencensus.io v0.22.1 | ||
... | ... |
... | ... | @@ -395,8 +395,6 @@ golang.org/x/tools v0.0.0-20181130052023-1c3d964395ce/go.mod h1:n7NCudcB/nEzxVGm |
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | ||
golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= | ||
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= | ||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc= | ||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | ||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 h1:/atklqdjdhuosWIl6AIbOeHJjicWYPqR9bpxqxYG2pA= | ||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | ||
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= | ||
... | ... |
Please register or sign in to comment