From 162e51a0af03fda3eb2c21f8a1ff4e7dfa9c647f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 4 Dec 2025 00:14:37 +0100 Subject: [PATCH] restore: fix crash when trying to mount fs volumes --- src/volumes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volumes.js b/src/volumes.js index 66436ef96..4f44d490d 100644 --- a/src/volumes.js +++ b/src/volumes.js @@ -213,8 +213,8 @@ async function mountAll() { debug('mountAll: mouting all volumes'); for (const volume of await list()) { + if (volume.mountType === mounts.MOUNT_TYPE_MOUNTPOINT || volume.mountType === mounts.MOUNT_TYPE_FILESYSTEM) continue; const mount = { description: volume.name, ...volume }; await mounts.tryAddMount(mount, { timeout: 10, skipCleanup: true }); // have to wait to avoid race with apptask } } -