We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a30df6b commit f414285Copy full SHA for f414285
src/sagemaker/local/image.py
@@ -239,18 +239,6 @@ def process(
239
# Continue even if rm sagemaker-local fails
240
pass
241
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
-
254
compose_command = self._compose()
255
process = subprocess.Popen(
256
compose_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
0 commit comments