Skip to content

Commit

Permalink
Merge branch 'tickets/DM-45722-hotfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Aug 29, 2024
2 parents 1162e18 + d69df87 commit e932c7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ctrl/mpexec/cli/cmd/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def qgraph(ctx: click.Context, **kwargs: Any) -> None:
)
return
if (qgraph := script.qgraph(pipelineObj=pipeline, **kwargs, show=show)) is None:
raise click.ClickException("QuantumGraph was empty; CRITICAL logs above should provide details.")
raise click.ClickException("QuantumGraph was empty; ERROR logs above should provide details.")
# QuantumGraph-only summary call here since script.qgraph also called
# by run methods.
if summary:
Expand Down Expand Up @@ -220,7 +220,7 @@ def run(ctx: click.Context, **kwargs: Any) -> None:
)
return
if (qgraph := script.qgraph(pipelineObj=pipeline, **kwargs, show=show)) is None:
raise click.ClickException("QuantumGraph was empty; CRITICAL logs above should provide details.")
raise click.ClickException("QuantumGraph was empty; ERROR logs above should provide details.")
_unhandledShow(show, "run")
if show.handled:
print(
Expand Down

0 comments on commit e932c7e

Please sign in to comment.