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 f78058a commit e1147f1Copy full SHA for e1147f1
src/sagemaker/local/image.py
@@ -227,8 +227,9 @@ def process(
227
228
if _ecr_login_if_needed(self.sagemaker_session.boto_session, self.image):
229
_pull_image(self.image)
230
-
231
- # Remove sagemaker-local network, compose_command will fail if an existing network is still around
+
+ # Remove sagemaker-local network, compose_command will fail if an existing
232
+ # network is still around
233
remove_sagemaker_local = ["docker", "network", "rm", STUDIO_HOST_NAME]
234
remove_process = subprocess.Popen(
235
remove_sagemaker_local, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
0 commit comments