Skip to content

Commit

Permalink
Fixed Kubernetes worker container launch command to remove trailing s…
Browse files Browse the repository at this point in the history
…emicolon.
  • Loading branch information
shishichen committed Jun 13, 2024
1 parent 8b45556 commit 8b39024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/providers/kubernetes/kube.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def _create_pod(self,
# Create the environment variables and command to initiate IPP
environment_vars = client.V1EnvVar(name="TEST", value="SOME DATA")

launch_args = ["-c", "{0};".format(cmd_string)]
launch_args = ["-c", "{0}".format(cmd_string)]

volume_mounts = []
# Create mount paths for the volumes
Expand Down

0 comments on commit 8b39024

Please sign in to comment.