Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
move cluster pool arg (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: squiishyy <[email protected]>
  • Loading branch information
squiishyy authored Oct 26, 2023
1 parent 9e95508 commit d19a2cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boilerplate/flyte/end2end/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ def execute_workflow(
cluster_pool_name: Optional[str] = None,
):
print(f"Fetching workflow={workflow_name} and version={version}")
wf = remote.fetch_workflow(name=workflow_name, version=version, cluster_pool=cluster_pool_name)
return remote.execute(wf, inputs=inputs, wait=False)
wf = remote.fetch_workflow(name=workflow_name, version=version)
return remote.execute(wf, inputs=inputs, wait=False, cluster_pool=cluster_pool_name)


def executions_finished(executions_by_wfgroup: Dict[str, List[FlyteWorkflowExecution]]) -> bool:
Expand Down

0 comments on commit d19a2cf

Please sign in to comment.