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.
2 parents 820403f + 87f6ccf commit 3aef260Copy full SHA for 3aef260
rootfs/registry/dockerclient.py
@@ -26,7 +26,7 @@ class DockerClient(object):
26
27
def __init__(self):
28
timeout = os.environ.get('DOCKER_CLIENT_TIMEOUT', docker.constants.DEFAULT_TIMEOUT_SECONDS)
29
- self.client = docker.Client(version='auto', timeout=timeout)
+ self.client = docker.Client(version='auto', timeout=int(timeout))
30
self.registry = settings.REGISTRY_HOST + ':' + str(settings.REGISTRY_PORT)
31
32
def login(self, repository, creds=None):
0 commit comments