update commit prev
This commit is contained in:
@@ -616,7 +616,10 @@ class PipelineHubApp(App):
|
||||
# Provide a visible startup summary of configured plugins/stores for debugging
|
||||
try:
|
||||
cfg = load_config() or {}
|
||||
provs = list(cfg.get("provider", {}).keys()) if isinstance(cfg.get("provider"), dict) else []
|
||||
plugin_block = cfg.get("plugin")
|
||||
if not isinstance(plugin_block, dict):
|
||||
plugin_block = cfg.get("provider")
|
||||
provs = list(plugin_block.keys()) if isinstance(plugin_block, dict) else []
|
||||
stores = list(cfg.get("store", {}).keys()) if isinstance(cfg.get("store"), dict) else []
|
||||
prov_display = ", ".join(provs[:10]) + ("..." if len(provs) > 10 else "")
|
||||
store_display = ", ".join(stores[:10]) + ("..." if len(stores) > 10 else "")
|
||||
|
||||
Reference in New Issue
Block a user