Skip to content

Commit

Permalink
Increase allowable timeout on memdb panic test
Browse files Browse the repository at this point in the history
CI runner can be slower and cause this to timeout

Fixes #1560
  • Loading branch information
josephschorr committed Oct 2, 2023
1 parent e97bbf7 commit f0e79a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/datastore/memdb/memdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func TestConcurrentWritePanic(t *testing.T) {
return g.Wait()
})
return numPanics > 0
}, 1*time.Second, 10*time.Millisecond)
}, 3*time.Second, 10*time.Millisecond)
require.ErrorIs(err, recoverErr)
}

Expand Down

0 comments on commit f0e79a9

Please sign in to comment.