mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Fixes parameters to fail_json (#40756)
The number of parameters was incorrect. This patch fixes it.
This commit is contained in:
parent
f488d3cf79
commit
547a1ed67d
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ except ImportError:
|
|||
def hard_timeout(module, want, start):
|
||||
elapsed = datetime.datetime.utcnow() - start
|
||||
module.fail_json(
|
||||
want.msg or "Timeout when waiting for BIG-IP", elapsed=elapsed.seconds
|
||||
msg=want.msg or "Timeout when waiting for BIG-IP", elapsed=elapsed.seconds
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue