From 7d68056681dd565e3635e3240d16bd2efc470b7d Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Fri, 29 Mar 2024 17:50:36 -0700 Subject: [PATCH] Bump `waitForStopped` timeout further. I am hitting the 15-second deadline for llama2-70b @ fp16. It's a beast of a model with ~130GiB of RAM. PiperOrigin-RevId: 620382594 --- runsc/sandbox/sandbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runsc/sandbox/sandbox.go b/runsc/sandbox/sandbox.go index 65ef57c1d..7ef63426b 100644 --- a/runsc/sandbox/sandbox.go +++ b/runsc/sandbox/sandbox.go @@ -1462,7 +1462,7 @@ func (s *Sandbox) waitForStopped() error { return nil } - ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 45*time.Second) defer cancel() b := backoff.WithContext(backoff.NewConstantBackOff(100*time.Millisecond), ctx) op := func() error {