[agent/codex:gpt-5.4-mini] Read docs/RFC-STORE.md fully. Find features described in the... #144

Merged
Virgil merged 1 commit from agent/read---spec-code-core-go-store-rfc-md-fu into dev 2026-04-04 13:07:47 +00:00

View file

@ -231,7 +231,7 @@ func (storeInstance *Store) RecoverOrphans(stateDirectory string) []*Workspace {
if stateDirectory == normaliseWorkspaceStateDirectory(defaultWorkspaceStateDirectory) {
storeInstance.orphanWorkspacesLock.Lock()
cachedWorkspaces := storeInstance.orphanWorkspaces
cachedWorkspaces := slices.Clone(storeInstance.orphanWorkspaces)
storeInstance.orphanWorkspaces = nil
storeInstance.orphanWorkspacesLock.Unlock()
if len(cachedWorkspaces) > 0 {