mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
describeWorkspaceRecordWithGitData was calling buildProjectPlacement → getCheckoutStatusLite which spawned 3-4 sequential git child processes per workspace. With 8 active workspaces and event loop pressure from running agents, this caused fetchWorkspaces to take 35-45s. Now uses workspaceGitService.getSnapshot() which returns instantly from cache (warm path) or awaits the git service's own concurrency-managed refresh (cold path).