diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2018-10-17 09:08:45 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-10-17 09:09:29 -0700 |
commit | bdcf8d143ef33d190fd92fcf7343bba06c3dba1f (patch) | |
tree | 963974b6e45dd5a6b565bf58171bb42ae4d5d9fc | |
parent | 4fae756645cf11a9f8bae87dd845d82dce5e428e (diff) |
Bump Pause/Resume integration test timeout in attempt to deflake Kokoro.
This is one of the many tests that fails periodically, making Kokoro unstable.
PiperOrigin-RevId: 217528257
Change-Id: I2508ecf4d74d71b91feff1183544d61d7bd16995
-rw-r--r-- | runsc/test/integration/integration_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/test/integration/integration_test.go b/runsc/test/integration/integration_test.go index e93171b8a..b7d07309d 100644 --- a/runsc/test/integration/integration_test.go +++ b/runsc/test/integration/integration_test.go @@ -106,7 +106,7 @@ func TestPauseResume(t *testing.T) { } // Wait until it's up and running. - if err := testutil.WaitForHTTP(port, 20*time.Second); err != nil { + if err := testutil.WaitForHTTP(port, 30*time.Second); err != nil { t.Fatal("WaitForHTTP() timeout:", err) } |