mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 10:13:09 +00:00
Fix argument parsing to module constructor
- Change to remove kwargs in a97d1016dc77186de8ad05704b6b4c141c005409 did not remove arguments passed in to the constructor.
This commit is contained in:
@@ -243,7 +243,7 @@ def main():
|
||||
if not socket:
|
||||
module.fail_json(msg="unable to locate haproxy socket")
|
||||
|
||||
ansible_haproxy = HAProxy(module, **module.params)
|
||||
ansible_haproxy = HAProxy(module)
|
||||
ansible_haproxy.act()
|
||||
|
||||
# import module snippets
|
||||
|
||||
Reference in New Issue
Block a user