mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct usages of module.warn (#53268)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
ab22ea1a66
commit
d901ba18d1
1 changed files with 2 additions and 2 deletions
|
@ -235,7 +235,7 @@ tablespace:
|
|||
type: str
|
||||
sample: 'ssd'
|
||||
query:
|
||||
description: Query that was tried to be execute.
|
||||
description: Query that was tried to be executed.
|
||||
returned: always
|
||||
type: str
|
||||
sample: 'CREATE INDEX CONCURRENTLY foo_idx ON test_table USING BTREE (id)'
|
||||
|
@ -569,7 +569,7 @@ def main():
|
|||
|
||||
if not module.check_mode and not kw['valid'] and concurrent:
|
||||
db_connection.rollback()
|
||||
module.warn(msg="Index %s is invalid! ROLLBACK" % idxname)
|
||||
module.warn("Index %s is invalid! ROLLBACK" % idxname)
|
||||
|
||||
if not concurrent:
|
||||
if module.check_mode:
|
||||
|
|
Loading…
Reference in a new issue