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:
Andrey Klychkov 2019-11-08 10:53:48 +03:00 committed by Felix Fontein
parent 26acb0703d
commit 2039bf45fe
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- postgresql_publication - fix typo in module.warn method name (https://github.com/ansible/ansible/issues/64582).

View file

@ -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)