File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,6 @@ def workflow_dispatch_forge(
193193 git_sha : str ,
194194 duration : int = 480 ,
195195 test_suite : str = FORGE_DEFAULT_TEST_SUITE ,
196- cluster_name : str = FORGE_DEFAULT_CLUSTER_NAME ,
197196 dry_run : bool = False ,
198197 wait : bool = False ,
199198) -> bool :
@@ -214,7 +213,7 @@ def workflow_dispatch_forge(
214213 "--field" ,
215214 f"FORGE_TEST_SUITE={ test_suite } " ,
216215 "--field" ,
217- f"FORGE_CLUSTER_NAME={ cluster_name } " ,
216+ f"FORGE_CLUSTER_NAME={ FORGE_DEFAULT_CLUSTER_NAME } " ,
218217 ]
219218 log .info (
220219 "%s: $ %s" ,
@@ -380,9 +379,10 @@ def run(
380379 shell ,
381380 new_exp_git_branch ,
382381 git_sha ,
383- forge_runner_duration_secs ,
384- forge_test_suite ,
385- dry_run ,
382+ duration = forge_runner_duration_secs ,
383+ test_suite = forge_test_suite ,
384+ dry_run = dry_run ,
385+ wait = wait ,
386386 )
387387 if not forge_workflow_dispatch_status :
388388 log .error ("Forge test workflow failed" )
You can’t perform that action at this time.
0 commit comments