Merge pull request #122703 from TommyStarK/fix/dra-manager-should-timeout

dra: increase timeout in setupFakeDRADriverGRPCServer to prevent tests to flake
This commit is contained in:
Kubernetes Prow Robot 2024-02-13 09:33:17 -08:00 committed by GitHub
commit 79e11fe563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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