Skip to content

Commit baeed34

Browse files
author
Justin
committed
change: remove pipe to devnull for docker login on local mode
1 parent 08a31b4 commit baeed34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/local/image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ def _ecr_login_if_needed(boto_session, image):
10741074
ecr_url = auth["authorizationData"][0]["proxyEndpoint"]
10751075

10761076
cmd = "docker login -u AWS -p %s %s" % (token, ecr_url)
1077-
subprocess.check_output(cmd.split(), stderr=subprocess.DEVNULL)
1077+
subprocess.check_output(cmd.split())
10781078

10791079
return True
10801080

0 commit comments

Comments
 (0)