Merge pull request #10543 from bitsf/fix_githubactions_testcase_timeout

Fix githubactions testcase timeout
This commit is contained in:
Ziming 2020-01-20 14:46:49 +08:00 committed by GitHub
commit cdd717ef77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ except ImportError:
class DockerAPI(object):
def __init__(self):
self.DCLIENT = docker.APIClient(base_url='unix://var/run/docker.sock',version='auto',timeout=10)
self.DCLIENT = docker.APIClient(base_url='unix://var/run/docker.sock',version='auto',timeout=30)
self.DCLIENT2 = docker.from_env()
def docker_login(self, registry, username, password, expected_error_message = None):