Merge "Inherit default galera_wait_timeout value from openstack_db_connection_recycle_time"

This commit is contained in:
Zuul 2021-12-02 17:23:13 +00:00 committed by Gerrit Code Review
commit 19d60b21f8
2 changed files with 3 additions and 1 deletions

View File

@ -98,7 +98,7 @@ galera_max_heap_table_size: 32M
galera_tmp_table_size: 32M
galera_file_limits: 65535
galera_wait_timeout: 3600
galera_wait_timeout: "{{ openstack_db_connection_recycle_time | default('600') }}"
# Increase this value if large SST transfers cause mysql startup to fail due
# to timeout
galera_startup_timeout: 1800

View File

@ -0,0 +1,2 @@
other:
- Set a new default value for ``galera_wait_timeout`` which is inherited from global ``openstack_db_connection_recycle_time``.