1212
1313from models import Bubble
1414from models .export import CollectedExportEntry
15- from services .summary_cache import fingerprint_workspace_storage , nocache_enabled
15+ from services .summary_cache import nocache_enabled
1616from services .workspace_context import (
1717 WorkspaceContext ,
1818 enrich_workspace_context_from_global_db ,
2222from services .workspace_db import (
2323 COMPOSER_ROWS_WITH_HEADERS_SQL ,
2424 collect_workspace_entries ,
25- global_storage_db_path ,
2625 load_code_block_diff_map ,
2726 open_global_db ,
2827 safe_fetchall ,
@@ -84,7 +83,6 @@ class WorkspaceOrchestration:
8483
8584 workspace_path : str
8685 workspace_entries : list [dict [str , Any ]]
87- fingerprint : dict [str , Any ]
8886 ctx : WorkspaceContext
8987 workspace_id_to_display_name : dict [str , str ]
9088 workspace_id_to_slug : dict [str , str ]
@@ -135,21 +133,12 @@ def prepare_workspace_orchestration(
135133 nocache : bool = False ,
136134 workspace_entries : list [dict [str , Any ]] | None = None ,
137135) -> WorkspaceOrchestration :
138- """Scan workspace storage and resolve maps (with summary-cache fingerprint) ."""
136+ """Scan workspace storage and resolve maps for listing and export ."""
139137 entries = (
140138 workspace_entries
141139 if workspace_entries is not None
142140 else collect_workspace_entries (workspace_path )
143141 )
144- gdb = global_storage_db_path (workspace_path )
145- cli_path = get_cli_chats_path ()
146- fingerprint = fingerprint_workspace_storage (
147- workspace_path ,
148- entries ,
149- global_db_path = gdb if os .path .isfile (gdb ) else None ,
150- rules = rules ,
151- cli_chats_path = cli_path if os .path .isdir (cli_path ) else None ,
152- )
153142 ctx = resolve_workspace_context_cached (
154143 workspace_path ,
155144 rules ,
@@ -160,7 +149,6 @@ def prepare_workspace_orchestration(
160149 return WorkspaceOrchestration (
161150 workspace_path = workspace_path ,
162151 workspace_entries = entries ,
163- fingerprint = fingerprint ,
164152 ctx = ctx ,
165153 workspace_id_to_display_name = display_name ,
166154 workspace_id_to_slug = slug_map ,
0 commit comments