Skip to content

Commit 1cfb2fd

Browse files
committed
[geerlingguyGH-206][geerlingguyGH-207] missing mysql_ prefix added
1 parent c07165f commit 1cfb2fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ mysql_query_cache_limit: "1M"
6464
mysql_max_connections: "151"
6565
mysql_tmp_table_size: "16M"
6666
mysql_max_heap_table_size: "16M"
67-
group_concat_max_len: 1024
68-
join_buffer_size: 262144
67+
mysql_group_concat_max_len: 1024
68+
mysql_join_buffer_size: 262144
6969

7070
# Other settings.
7171
mysql_lower_case_table_names: "0"

templates/my.cnf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ query_cache_limit = {{ mysql_query_cache_limit }}
8484
max_connections = {{ mysql_max_connections }}
8585
tmp_table_size = {{ mysql_tmp_table_size }}
8686
max_heap_table_size = {{ mysql_max_heap_table_size }}
87-
group_concat_max_len = {{ group_concat_max_len }}
88-
join_buffer_size = {{ join_buffer_size }}
87+
group_concat_max_len = {{ mysql_group_concat_max_len }}
88+
join_buffer_size = {{ mysql_join_buffer_size }}
8989

9090
# Other settings.
9191
wait_timeout = {{ mysql_wait_timeout }}

0 commit comments

Comments
 (0)