Skip to content

Commit

Permalink
Longer shutdown times
Browse files Browse the repository at this point in the history
  • Loading branch information
gammazero committed Sep 22, 2023
1 parent 6062105 commit eed52b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/ipfs/go-datastore v0.6.0
github.com/ipld/go-ipld-prime v0.21.0
github.com/ipni/go-libipni v0.5.3-0.20230922173748-1bf84e608c2e
github.com/ipni/storetheindex v0.8.2-0.20230922210259-1ee47f89d3b7
github.com/ipni/storetheindex v0.8.2-0.20230922224333-b9d7c2132303
github.com/libp2p/go-libp2p v0.31.0
github.com/multiformats/go-multicodec v0.9.0
github.com/multiformats/go-multihash v0.2.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ github.com/ipld/go-ipld-prime v0.21.0 h1:n4JmcpOlPDIxBcY037SVfpd1G+Sj1nKZah0m6QH
github.com/ipld/go-ipld-prime v0.21.0/go.mod h1:3RLqy//ERg/y5oShXXdx5YIp50cFGOanyMctpPjsvxQ=
github.com/ipni/go-libipni v0.5.3-0.20230922173748-1bf84e608c2e h1:UArwitHABuUbFws1iTp81ykKuwS+q4tJUKn/kF1axTg=
github.com/ipni/go-libipni v0.5.3-0.20230922173748-1bf84e608c2e/go.mod h1:UnrhEqjVI2Z2HXlaieOBONJmtW557nZkYpB4IIsMD+s=
github.com/ipni/storetheindex v0.8.2-0.20230922210259-1ee47f89d3b7 h1:IXVchAxpoK18JsWf+w9GJUUdKJcGdO8e9Zkuwv5Tw+Q=
github.com/ipni/storetheindex v0.8.2-0.20230922210259-1ee47f89d3b7/go.mod h1:K4AR2bRll46YCWeGvob5foN/Z/kuovPdlUeJKOHVQHo=
github.com/ipni/storetheindex v0.8.2-0.20230922224333-b9d7c2132303 h1:QW4sDh7Gsn59GEccHEqALp1s91QVJG7SyAbTQHcbUGs=
github.com/ipni/storetheindex v0.8.2-0.20230922224333-b9d7c2132303/go.mod h1:K4AR2bRll46YCWeGvob5foN/Z/kuovPdlUeJKOHVQHo=
github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus=
github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc=
github.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA=
Expand Down
4 changes: 2 additions & 2 deletions naam_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ type testEnv struct {
}

func (te testEnv) Stop() {
te.e.Stop(te.cmdIndexer, time.Second)
te.e.Stop(te.cmdDhstore, time.Second)
te.e.Stop(te.cmdIndexer, 3*time.Second)
te.e.Stop(te.cmdDhstore, 3*time.Second)
}

func setupTestEnv(t *testing.T, ctx context.Context) testEnv {
Expand Down

0 comments on commit eed52b1

Please sign in to comment.