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 d16da72 commit 06ae774Copy full SHA for 06ae774
src/sagemaker/local/utils.py
@@ -179,8 +179,8 @@ def get_docker_host():
179
logger.warning(
180
"RootlessDocker not detected, falling back to remote host IP or localhost."
181
)
182
- except subprocess.SubprocessError:
183
- pass
+ except subprocess.SubprocessError as e:
+ logger.warning("Failed to run 'docker info' command when checking rootlessDocker: %s.", e)
184
185
# Fallback to existing logic for remote Docker hosts
186
cmd = "docker context inspect".split()
0 commit comments