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 f806e25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
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
3 changes: 1 addition & 2 deletions parsl/providers/kubernetes/template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
template_string = """{worker_init}
{command}
"""
{command}"""

0 comments on commit f806e25

Please sign in to comment.