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
This commit is contained in:
Etienne Perot
2024-03-29 17:53:32 -07:00
committed by gVisor bot
parent 5728f719d5
commit 7d68056681
+1 -1
View File
@@ -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 {