Skip to content

Commit f414285

Browse files
committed
fix: trigger workflow
1 parent a30df6b commit f414285

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/sagemaker/local/image.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -239,18 +239,6 @@ def process(
239239
# Continue even if rm sagemaker-local fails
240240
pass
241241

242-
# Remove sagemaker-local network, compose_command will fail if an existing
243-
# network is still around
244-
remove_sagemaker_local = ["docker", "network", "rm", STUDIO_HOST_NAME]
245-
remove_process = subprocess.Popen(
246-
remove_sagemaker_local, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
247-
)
248-
try:
249-
_stream_output(remove_process)
250-
except RuntimeError:
251-
# Continue even if rm sagemaker-local fails
252-
pass
253-
254242
compose_command = self._compose()
255243
process = subprocess.Popen(
256244
compose_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT

0 commit comments

Comments
 (0)