Release 10.2.0 #114

Manually merged
jlecour merged 103 commits from unstable into stable 2020-09-17 14:14:16 +02:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 5b9cc3af31 - Show all commits

View file

@ -30,6 +30,7 @@ mysql_query_cache_limit: Null
mysql_query_cache_size: Null
mysql_max_allowed_packet: Null
mysql_force_custom_config: 'no'
mysql_innodb_log_file_size: Null
mysql_cron_optimize: True
mysql_cron_optimize_frequency: weekly
@ -51,3 +52,4 @@ mysql_binlog_format: mixed
mysql_server_id: null
mysql_bind_address: null
mysql_repl_password: ''

View file

@ -35,5 +35,6 @@ max_allowed_packet = {{ mysql_max_allowed_packet }}
{% if mysql_lower_case_table_names %}
lower_case_table_names = {{ mysql_lower_case_table_names }}
{% endif %}
{% if mysql_innodb_log_file_size %}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
{% endif %}