Skip to content

Commit 9f33620

Browse files
committed
Use keyword args in compute_common_params
Signed-off-by: Constantin M Adam <[email protected]>
1 parent 6cc18cd commit 9f33620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

transforms/universal/fdedup/kfp_ray/fdedup_wf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ def fuzzydedup(
221221
with dsl.ExitHandler(clean_up_task):
222222
# compute execution params
223223
compute_common_exec_params = compute_common_params_op(
224-
ray_worker_options,
225-
data_s3_config,
226-
fdedup_num_permutations,
227-
fdedup_n_samples,
224+
worker_options=ray_worker_options,
225+
data_s3_config=data_s3_config,
226+
num_permutations=fdedup_num_permutations,
227+
n_samples=fdedup_n_samples,
228228
)
229229
ComponentUtils.add_settings_to_component(compute_common_exec_params, ONE_HOUR_SEC * 2)
230230
ComponentUtils.set_s3_env_vars_to_component(compute_common_exec_params, data_s3_access_secret)

0 commit comments

Comments
 (0)