mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Added more meaningful fail messages on Docker API
This commit is contained in:
parent
dfaa1ec528
commit
a64bae30b5
1 changed files with 2 additions and 0 deletions
|
@ -153,6 +153,8 @@ class DockerLoginManager:
|
|||
reauth=self.reauth,
|
||||
dockercfg_path=self.dockercfg_path
|
||||
)
|
||||
except DockerAPIError as e:
|
||||
self.module.fail_json(msg="Docker API Error: %s" % e.explanation)
|
||||
except Exception as e:
|
||||
self.module.fail_json(msg="failed to login to the remote registry", error=repr(e))
|
||||
|
||||
|
|
Loading…
Reference in a new issue