mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix undefined variables, basestring usage, and some associated python3 issues
This commit is contained in:
@@ -170,7 +170,7 @@ def main():
|
||||
name = module.params.get('name')
|
||||
state = module.params.get('state')
|
||||
backend = module.params.get('backend')
|
||||
weight = long(module.params.get('weight'))
|
||||
weight = module.params.get('weight')
|
||||
probe = module.params.get('probe')
|
||||
timeout = module.params.get('timeout')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user