Skip to content
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
5 changes: 4 additions & 1 deletion libs/executors/garf/executors/entrypoints/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ def main():
wf_parent = pathlib.Path.cwd() / pathlib.Path(workflow_file).parent
execution_workflow = workflow.Workflow.from_file(workflow_file)
for i, step in enumerate(execution_workflow.steps, 1):
with tracer.start_as_current_span(f'{i}-{step.fetcher}'):
step_span_name = f'{i}-{step.fetcher}'
if step.alias:
step_span_name = f'{step_span_name}-{step.alias}'
with tracer.start_as_current_span(step_span_name):
query_executor = garf.executors.setup_executor(
source=step.fetcher,
fetcher_parameters=step.fetcher_parameters,
Expand Down