Skip to content

Commit

Permalink
Fix verification type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak committed Mar 20, 2024
1 parent d118fd9 commit 095c147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molecule/configure/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

- name: Check PostgreSQL settings
ansible.builtin.assert:
that: _max_connections == postgresql_conf_max_conns
that: (_max_connections | int) == (postgresql_conf_max_conns | int)
fail_msg: "Expected max_connections = {{ postgresql_conf_max_conns }}, found {{ _max_connections }}"
success_msg: "max_connections = {{ _max_connections }}"
vars:
Expand Down

0 comments on commit 095c147

Please sign in to comment.