Skip to content

Commit

Permalink
Merge pull request #17481 from srivastav-abhishek/timeout-fix
Browse files Browse the repository at this point in the history
Increased timeout to fix TestHashKVWhenCompacting test
  • Loading branch information
ahrtr authored Feb 23, 2024
2 parents e1ceb7d + fe11302 commit 2e7ed80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/storage/mvcc/kvstore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ func TestHashKVWhenCompacting(t *testing.T) {

select {
case <-donec:
case <-time.After(10 * time.Second):
case <-time.After(20 * time.Second):
close(stopc)
wg.Wait()
testutil.FatalStack(t, "timeout")
Expand Down

0 comments on commit 2e7ed80

Please sign in to comment.