Skip to content

Commit

Permalink
small update
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Nov 15, 2023
1 parent 18c5c92 commit a6d086b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class ExecutionProperties(
],
)
):
"""Information to be used by dagster internals during execution. Contains:
* A description of the step.
"""Information to be used by dagster internals during execution.
You should not need to access these attributes directly.
"""

def __new__(cls, step_description: str, op_execution_context: "OpExecutionContext"):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def bind(
self._op_config = resolve_bound_config(config_from_args or self.op_config, op_def)

self._execution_props = ExecutionProperties(
step_description=f'op "{self._alias}"', op_execution_context=self
step_description=f'op "{self._op_def.name}"', op_execution_context=self
)

self._requires_typed_event_stream = False
Expand Down

0 comments on commit a6d086b

Please sign in to comment.