Merge pull request #16421 from ahrtr/flaky_test_20230815

test: increase the timeout for the flaky test `TestCtlV3AuthCertCNWithWithConcurrentOperation`
This commit is contained in:
Benjamin Wang 2023-08-15 18:15:47 +08:00 committed by GitHub
commit f965d474b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@ func TestCtlV3AuthCertCNWithWithConcurrentOperation(t *testing.T) {
t.Fatalf("Unexpected error: %v", err)
case <-donec:
t.Log("All done!")
case <-time.After(30 * time.Second):
t.Fatal("Test case timeout after 20 seconds")
case <-time.After(40 * time.Second):
t.Fatal("Test case timeout after 40 seconds")
}
}