Skip to content

Commit

Permalink
Ansible pg_upgrade.yml pre_check is failed when postgresql_version is…
Browse files Browse the repository at this point in the history
… int

  * regex_replace ansible filter expects a string or pattern
    otherwise it fails with the error.
    "first argument must be string or compiled pattern"
  • Loading branch information
ruslanloman committed Oct 2, 2024
1 parent 65939d6 commit e57d38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ consul_services:


# PostgreSQL variables
postgresql_version: 16
postgresql_version: "16"
# postgresql_data_dir: see vars/Debian.yml or vars/RedHat.yml
postgresql_listen_addr: "0.0.0.0" # Listen on all interfaces. Or use "{{ inventory_hostname }},127.0.0.1" to listen on a specific IP address.
postgresql_port: 5432
Expand Down

0 comments on commit e57d38c

Please sign in to comment.