From 095c147bcf5a064850b4b26e9116a7517e7125da Mon Sep 17 00:00:00 2001 From: Ted Cook Date: Wed, 20 Mar 2024 12:57:10 -0600 Subject: [PATCH] Fix verification type mismatch --- molecule/configure/verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/configure/verify.yml b/molecule/configure/verify.yml index 64d8200..7a2ac68 100644 --- a/molecule/configure/verify.yml +++ b/molecule/configure/verify.yml @@ -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: