mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Remove registry from exit_json because misleading docker-py is not returning the name of the registry if already logged in. It can differ from the registry specified by the user, which was return as registry.
This commit is contained in:
@@ -229,7 +229,7 @@ def main():
|
||||
try:
|
||||
manager = DockerLoginManager(module)
|
||||
manager.login()
|
||||
module.exit_json(changed=manager.has_changed(), msg=manager.get_msg(), registry=manager.registry)
|
||||
module.exit_json(changed=manager.has_changed(), msg=manager.get_msg())
|
||||
|
||||
except Exception as e:
|
||||
module.fail_json(msg="Module execution has failed due to an unexpected error", error=repr(e))
|
||||
|
||||
Reference in New Issue
Block a user