le1t0-deprec 2.1.6.011 → 2.1.6.012
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/lib/deprec/recipes/db/mysql.rb +1 -1
- data/lib/deprec/templates/mysql/my.cnf.erb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -62,7 +62,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
62
62
|
set :mysql_mysqld_innodb_log_buffer_size, nil
|
63
63
|
set :mysql_mysqld_innodb_additional_mem_pool_size, nil
|
64
64
|
set :mysql_mysqld_innodb_flush_method, nil
|
65
|
-
set :mysql_mysqld_thread_concurrency,
|
65
|
+
set :mysql_mysqld_thread_concurrency, nil
|
66
66
|
set :mysql_mysqld_max_connections, nil
|
67
67
|
set :mysql_mysqld_read_buffer_size, nil
|
68
68
|
set :mysql_mysqld_read_rnd_buffer_size, nil
|
@@ -56,7 +56,7 @@
|
|
56
56
|
<% if mysql_mysqld_innodb_additional_mem_pool_size %>innodb_additional_mem_pool_size = <%= mysql_mysqld_innodb_additional_mem_pool_size %><% end %>
|
57
57
|
<% if mysql_mysqld_innodb_flush_method %>innodb_flush_method = <%= mysql_mysqld_innodb_flush_method %><% end %>
|
58
58
|
<% if mysql_mysqld_thread_concurrency %>thread_concurrency = <%= mysql_mysqld_thread_concurrency %><% end %>
|
59
|
-
<% if mysql_mysqld_innodb_thread_concurrency %>
|
59
|
+
<% if mysql_mysqld_innodb_thread_concurrency %>innodb_thread_concurrency = <%= mysql_mysqld_innodb_thread_concurrency %><% end %>
|
60
60
|
<% if mysql_mysqld_max_connections %>max_connections = <%= mysql_mysqld_max_connections %><% end %>
|
61
61
|
<% if mysql_mysqld_read_buffer_size %>read_buffer_size = <%= mysql_mysqld_read_buffer_size %><% end %>
|
62
62
|
<% if mysql_mysqld_read_rnd_buffer_size %>read_rnd_buffer_size = <%= mysql_mysqld_read_rnd_buffer_size %><% end %>
|