dra: increase timeout in setupFakeDRADriverGRPCServer to prevent tests to flake.

Signed-off-by: TommyStarK <thomasmilox@gmail.com>
This commit is contained in:
TommyStarK 2024-01-11 09:20:04 +01:00
parent c9158e9a19
commit 6f021e99cf
No known key found for this signature in database
GPG Key ID: 9D2DFCECABB40F9E

View File

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