Skip to content

Commit

Permalink
fix type error (#7887)
Browse files Browse the repository at this point in the history
  • Loading branch information
smackesey committed May 13, 2022
1 parent bfbfa62 commit 21b6a5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def k8s_job_executor(init_context: InitExecutorContext) -> Executor:
kubeconfig_file=run_launcher.kubeconfig_file,
),
retries=RetryMode.from_config(init_context.executor_config["retries"]), # type: ignore
max_concurrent=exc_cfg.get("max_concurrent"),
max_concurrent=check.opt_int_elem(exc_cfg, "max_concurrent"),
should_verify_step=True,
)

Expand Down

0 comments on commit 21b6a5e

Please sign in to comment.