Skip to content

Commit

Permalink
fix: trigger workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bzheng06 committed Aug 27, 2024
1 parent a30df6b commit f414285
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/sagemaker/local/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,18 +239,6 @@ def process(
# Continue even if rm sagemaker-local fails
pass

# Remove sagemaker-local network, compose_command will fail if an existing
# network is still around
remove_sagemaker_local = ["docker", "network", "rm", STUDIO_HOST_NAME]
remove_process = subprocess.Popen(
remove_sagemaker_local, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
)
try:
_stream_output(remove_process)
except RuntimeError:
# Continue even if rm sagemaker-local fails
pass

compose_command = self._compose()
process = subprocess.Popen(
compose_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
Expand Down

0 comments on commit f414285

Please sign in to comment.