Skip to content

Commit

Permalink
fix k8s attribute handling bug (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
oavdeev authored Oct 12, 2021
1 parent fb73234 commit 987a6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/aws/eks/kubernetes_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def runtime_step_cli(
if k == 'namespace':
cli_args.command_options['k8s_namespace'] = v
else:
cli_args.command_options['namespace'] = v
cli_args.command_options[k] = v
cli_args.command_options["run-time-limit"] = self.run_time_limit
cli_args.entrypoint[0] = sys.executable

Expand Down

0 comments on commit 987a6ee

Please sign in to comment.