Merge pull request #121774 from charles-chenzz/increase_timeout_in_dra_shouldTimeOut

increase timeout in fakeDraDriverGrpcServer to fix flake
This commit is contained in:
Kubernetes Prow Robot 2024-01-04 17:59:12 +01:00 committed by GitHub
commit c96d7a5b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,7 @@ func setupFakeDRADriverGRPCServer(shouldTimeout bool) (fakeDRAServerInfo, error)
driverName: driverName,
}
if shouldTimeout {
timeout := plugin.PluginClientTimeout + 10*time.Millisecond
timeout := plugin.PluginClientTimeout + 30*time.Millisecond
fakeDRADriverGRPCServer.timeout = &timeout
}