Skip to content

Commit

Permalink
feat: Implement passing pipeline_output_path (#420)
Browse files Browse the repository at this point in the history
* feat: Implement passing pipeline_output_path

* fix: Lint
  • Loading branch information
Dr0p42 authored Sep 2, 2023
1 parent 246b58a commit f03ea7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion naas/pipeline/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def run(self, ctx: ExecutionContext):
self.notebook_path,
out_file,
progress_bar=False,
parameters=self.parameters,
parameters={"pipeline_output_path": ctx.output_path} | self.parameters,
)
self.status = StepStatus.COMPLETED
except Exception as e:
Expand Down

0 comments on commit f03ea7c

Please sign in to comment.