h
This commit is contained in:
@@ -52,7 +52,8 @@ def suspend_live_progress():
|
||||
try:
|
||||
ui.pause()
|
||||
paused = True
|
||||
except Exception:
|
||||
except Exception as exc:
|
||||
logger.exception("Failed to pause live progress UI: %s", exc)
|
||||
paused = False
|
||||
yield
|
||||
finally:
|
||||
@@ -1427,7 +1428,8 @@ class PipelineExecutor:
|
||||
logger.exception("is_known_provider_name predicate failed for key %s; falling back", key)
|
||||
try:
|
||||
provider = get_provider(key, config)
|
||||
except Exception:
|
||||
except Exception as exc:
|
||||
logger.exception("Failed to load provider '%s' during selector resolution: %s", key, exc)
|
||||
continue
|
||||
selector = getattr(provider, "selector", None)
|
||||
if selector is None:
|
||||
@@ -1439,7 +1441,7 @@ class PipelineExecutor:
|
||||
stage_is_last=True)
|
||||
)
|
||||
except Exception as exc:
|
||||
print(f"{key} selector failed: {exc}\n")
|
||||
logger.exception("%s selector failed during selection: %s", key, exc)
|
||||
return True
|
||||
if handled:
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user