From 4c33a53b67046a6b5a19f24a8aa091fe6d1c2765 Mon Sep 17 00:00:00 2001 From: Virgil Date: Fri, 3 Apr 2026 08:02:53 +0000 Subject: [PATCH] refactor(store): remove no-op startup orphan scan Co-Authored-By: Virgil --- store.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/store.go b/store.go index f0ab547..d856f23 100644 --- a/store.go +++ b/store.go @@ -155,9 +155,6 @@ func newStoreFromConfig(operation string, config StoreConfig) (*Store, error) { storeInstance.purgeInterval = config.PurgeInterval } - // Scan the workspace state directory on startup so orphan discovery stays - // part of the store initialisation path without changing recovery semantics. - _ = discoverOrphanWorkspacePaths(defaultWorkspaceStateDirectory) storeInstance.startBackgroundPurge() return storeInstance, nil } -- 2.45.3