hi is there any chance to get the unique pipeline ...
# announcements
m
hi is there any chance to get the unique pipeline execution id immediately after triggered from python
Copy code
if __name__ == '__main__':
    result = execute_pipeline(hello_cereal_pipeline)
    assert result.success
s
Hey @Muthu,
execute_pipeline
returns a
PipelineExecutionResult
which has a
run_id
on it. So in your example, you can access
result.run_id
m
@sashank yes, but i want to get it while its started running… i can result.run_id only after completion of the execution. also, using run_config i can have the custom run_id, but expected is to get the status of the pipeline async.