From b445e3ca8e553c99a9e3cb3e1ac5c6fe0e39d850 Mon Sep 17 00:00:00 2001 From: Lucas Manning Date: Thu, 26 Oct 2023 15:23:22 -0700 Subject: [PATCH] Bump mount promise timeout. PiperOrigin-RevId: 577002844 --- pkg/sentry/vfs/vfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sentry/vfs/vfs.go b/pkg/sentry/vfs/vfs.go index b096ea772..2bbbe954d 100644 --- a/pkg/sentry/vfs/vfs.go +++ b/pkg/sentry/vfs/vfs.go @@ -63,7 +63,7 @@ import ( // How long to wait for a mount promise before proceeding with the VFS // operation. This should be configurable by the user eventually. -const mountPromiseTimeout = 10 * time.Second +const mountPromiseTimeout = 30 * time.Second // A VirtualFilesystem (VFS for short) combines Filesystems in trees of Mounts. //