diff options
author | Joffrey F <joffrey@docker.com> | 2018-11-30 15:40:14 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2018-11-30 15:56:39 -0800 |
commit | bc84ed11ec7f7e20f27139a5e44ae0862d5a1f7b (patch) | |
tree | 0e273f39aab7f0014e8b36194308d70ee38abd48 /docker/api/build.py | |
parent | c344660f20353bedec6c18ef22b25b3083c8fe3f (diff) | |
download | docker-py-authconfig_fix.tar.gz |
Fix empty authconfig detectionauthconfig_fix
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'docker/api/build.py')
-rw-r--r-- | docker/api/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/api/build.py b/docker/api/build.py index c4fc37e..5db5838 100644 --- a/docker/api/build.py +++ b/docker/api/build.py @@ -286,10 +286,10 @@ class BuildApiMixin(object): # If we don't have any auth data so far, try reloading the config # file one more time in case anything showed up in there. - if not self._auth_configs: + if not self._auth_configs or self._auth_configs.is_empty: log.debug("No auth config in memory - loading from filesystem") self._auth_configs = auth.load_config( - credsore_env=self.credsore_env + credstore_env=self.credstore_env ) # Send the full auth configuration (if any exists), since the build |