Skip to content

Commit

Permalink
Fix timeout caused by -race test mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-Wilson committed May 29, 2024
1 parent 51b703f commit 45f9ad7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions das/rpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func testRpcImpl(t *testing.T, size, times int, concurrent bool, sleepOnIteratio
Backends: string(backendsJsonByte),
MaxStoreChunkBodySize: (chunkSize * 2) + len(sendChunkJSONBoilerplate),
},
RequestTimeout: 5 * time.Second,
RequestTimeout: time.Minute,
}
rpcAgg, err := NewRPCAggregatorWithSeqInboxCaller(aggConf, nil, signer)
testhelpers.RequireImpl(t, err)
Expand Down Expand Up @@ -135,7 +135,6 @@ const chunkSize = 512 * 1024

func TestRPCStore(t *testing.T) {
dontSleep := func(_ int) {}
batchBuildingExpiry = time.Second * 5

for _, tc := range []struct {
desc string
Expand Down

0 comments on commit 45f9ad7

Please sign in to comment.