Merge pull request #14486 from ahrtr/fix_flaky_TestKVDelete

Test: increase the TestKVDelete's timeout to 15s
This commit is contained in:
Sahdev Zala 2022-09-17 18:28:36 -04:00 committed by GitHub
commit 5e61b1c59b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ func TestKVDelete(t *testing.T) {
testRunner.BeforeTest(t)
for _, tc := range clusterTestCases {
t.Run(tc.name, func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer cancel()
clus := testRunner.NewCluster(ctx, t, tc.config)
defer clus.Close()