Fix matrix_postgres_connection_password length check

This commit is contained in:
Slavi Pantaleev
2021-01-22 21:22:58 +02:00
parent 3647b23628
commit f9968b6981
2 changed files with 2 additions and 2 deletions

View File

@ -36,4 +36,4 @@
- name: Fail if Postgres password length exceeded
fail:
msg: "The maximum `matrix_postgres_connection_password` length is 99 characters"
when: "matrix_postgres_connection_hostname|length > 99"
when: "matrix_postgres_connection_password|length > 99"