Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sagemaker_training/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def run_async(cmd, processes_per_host, env, cwd, stderr, **kwargs):
Raises:
error_class: If there is an exception raised when creating the process.
"""
cmd = " ".join(cmd)
cmd = " ".join(six.moves.shlex_quote(token) for token in cmd)
proc = await asyncio.create_subprocess_shell(
cmd, env=env, cwd=cwd, stdout=PIPE, stderr=stderr, **kwargs
)
Expand Down Expand Up @@ -255,7 +255,7 @@ def _create_command(self):
six.moves.shlex_quote(arg) # pylint: disable=too-many-function-args
for arg in self._args
]
return ["/bin/sh", "-c", '"./%s %s"' % (self._user_entry_point, " ".join(args))]
return ["/bin/sh", "-c", "./%s %s" % (self._user_entry_point, " ".join(args))]

def _python_command(self): # pylint: disable=no-self-use
return [python_executable()]
Expand Down