This commit is contained in:
2026-01-16 03:25:36 -08:00
parent 6bc3cbfe9c
commit 00bee0011c
3 changed files with 42 additions and 15 deletions

4
CLI.py
View File

@@ -823,7 +823,9 @@ class CmdletIntrospection:
normalized_arg = (arg_name or "").lstrip("-").strip().lower()
if normalized_arg in ("storage", "store"):
backends = cls.store_choices(config, force=force)
# Use cached/lightweight names for completions to avoid instantiating backends
# (instantiating backends may perform initialization such as opening folder DBs).
backends = cls.store_choices(config, force=False)
if backends:
return backends