mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-09 01:39:10 -07:00
[stable-1] Various backports from community.postgres (#1789)
* postgresql modules: various backports from community.postgresql * Add postgresql_set community/postgresql/pull/52 backport * Fix * Update plugins/modules/database/postgresql/postgresql_set.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/modules/database/postgresql/postgresql_set.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update changelogs/fragments/1-community-postgresql_backports.yml Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
91acc44c34
commit
3a2e614071
10 changed files with 296 additions and 32 deletions
|
@ -926,7 +926,7 @@ class PgClusterInfo(object):
|
|||
raw = raw.split()[1].split('.')
|
||||
self.pg_info["version"] = dict(
|
||||
major=int(raw[0]),
|
||||
minor=int(raw[1]),
|
||||
minor=int(raw[1].rstrip(',')),
|
||||
)
|
||||
|
||||
def get_recovery_state(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue