postgresql_publication: fix typo in module.warn (#64582)
* postgresql_publication: fix typo in module.warn * postgresql_publication: fix typo in module.warn, add changelog
This commit is contained in:
parent
26acb0703d
commit
2039bf45fe
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582).
|
|
@ -603,7 +603,7 @@ def main():
|
|||
module.warn('parameter "owner" is ignored when "state=absent"')
|
||||
|
||||
if state == 'present' and cascade:
|
||||
module.warm('parameter "cascade" is ignored when "state=present"')
|
||||
module.warn('parameter "cascade" is ignored when "state=present"')
|
||||
|
||||
# Connect to DB and make cursor object:
|
||||
conn_params = get_conn_params(module, module.params)
|
||||
|
|
Loading…
Reference in a new issue