We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fddf64 commit b8a61bbCopy full SHA for b8a61bb
python/activator/middleware_interface.py
@@ -561,7 +561,12 @@ def prep_butler(self) -> None:
561
self._transfer_data(all_datasets, calib_datasets)
562
563
with time_this_to_bundle(bundle, action_id, "prep_butlerPreprocessTime"):
564
- self._run_preprocessing()
+ try:
565
+ self._run_preprocessing()
566
+ except NoGoodPipelinesError:
567
+ _log.exception("Preprocessing pipelines not runnable, trying main pipelines anyway.")
568
+ except (PipelinePreExecutionError, PipelineExecutionError):
569
+ _log.exception("Preprocessing pipeline failed, trying main pipelines anyway.")
570
571
# IMPORTANT: do not remove or rename entries in this list. New entries can be added as needed.
572
enforce_schema(bundle, {action_id: ["prep_butlerTotalTime",
0 commit comments