Skip to content

Commit

Permalink
Fix log message in QG generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Jan 31, 2024
1 parent c2ac72d commit 36dec5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/base/quantum_graph_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def _resolve_task_quanta(self, task_node: TaskNode, skeleton: QuantumGraphSkelet
if no_work_quanta:
message_terms.append(f"{len(no_work_quanta)} had no work to do")
if skipped_quanta:
message_terms.append(f"{len(no_work_quanta)} previously succeeded")
message_terms.append(f"{len(skipped_quanta)} previously succeeded")

Check warning on line 573 in python/lsst/pipe/base/quantum_graph_builder.py

View check run for this annotation

Codecov / codecov/patch

python/lsst/pipe/base/quantum_graph_builder.py#L573

Added line #L573 was not covered by tests
message_parenthetical = f" ({', '.join(message_terms)})" if message_terms else ""
if remaining_quanta:
self.log.info(
Expand Down

0 comments on commit 36dec5b

Please sign in to comment.