Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-47628: Prompt Processing does not fall back on missing PrerequisiteInputs #225

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/activator/middleware_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -1255,8 +1255,8 @@ def _try_pipelines(self, pipelines, in_collections, data_ids, *, label):
with lsst.utils.timer.time_this(
_log, msg=f"executor.make_quantum_graph ({label})", level=logging.DEBUG):
qgraph = executor.make_quantum_graph(pipeline, where=data_ids)
except MissingDatasetTypeError as e:
_log.error(f"Building quantum graph for {pipeline_file} failed ", exc_info=e)
except (FileNotFoundError, MissingDatasetTypeError):
_log.exception(f"Building quantum graph for {pipeline_file} failed.")
continue
if len(qgraph) == 0:
# Diagnostic logs are the responsibility of GraphBuilder.
Expand Down
Loading