Skip to content

Commit

Permalink
solid -> op in message for omitted outputs (#7903)
Browse files Browse the repository at this point in the history
  • Loading branch information
sryza committed Jun 9, 2022
1 parent b6a8f2f commit a6107b7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python_modules/dagster/dagster/core/execution/plan/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ def execute_core_compute(
omitted_outputs = solid_output_names.difference(emitted_result_names)
if omitted_outputs:
step_context.log.info(
"Solid {solid} did not fire outputs {outputs}".format(
solid=str(step.solid_handle), outputs=repr(omitted_outputs)
)
f"{step_context.solid_def.node_type_str} '{str(step.solid_handle)}' did not fire "
f"outputs {repr(omitted_outputs)}"
)

0 comments on commit a6107b7

Please sign in to comment.