mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Increase ICMP poll timeout on Fuchsia
We are still seeing flakes in Fuchsia's CQ. Increase the poll timeout by a factor of 10. PiperOrigin-RevId: 516659576
This commit is contained in:
@@ -56,7 +56,7 @@ namespace {
|
||||
size_t IcmpTimeoutMillis() {
|
||||
// Fuchsia's CI infra is susceptible to timing jumps. Set a long timeout
|
||||
// to avoid flakes.
|
||||
return GvisorPlatform() == Platform::kFuchsia ? 10000 : 1000;
|
||||
return GvisorPlatform() == Platform::kFuchsia ? 100000 : 1000;
|
||||
}
|
||||
|
||||
// Fixture for tests parameterized by the address family to use (AF_INET and
|
||||
|
||||
Reference in New Issue
Block a user