This repository was archived by the owner on Sep 21, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,13 @@ properties:
263
263
description: 'Threshold in seconds above which SQL queries get logged in the slow query log file'
264
264
265
265
cf_mysql.mysql.bootstrap_enabled:
266
- default: true
266
+ default: true
267
267
description: 'Enables usage of bootsrap procedure'
268
268
269
+ cf_mysql.mysql.wait_timeout:
270
+ default: 28800
271
+ description: 'The number of seconds the server waits for activity on a noninteractive connection before closing it'
272
+
273
+ cf_mysql.mysql.innodb_force_primary_key:
274
+ default: false
275
+ description: 'The number of seconds the server waits for activity on an interactive connection before closing it'
Original file line number Diff line number Diff line change @@ -194,6 +194,10 @@ innodb_log_buffer_size = <%= p('cf_mysql.mysql.innodb_log_buffer_size')
194
194
195
195
max_connections = <%= p('cf_mysql.mysql.max_connections') %>
196
196
197
+ wait_timeout = <%= p('cf_mysql.mysql.wait_timeout') %>
198
+
199
+ innodb_force_primary_key = <%= p('cf_mysql.mysql.innodb_force_primary_key') %>
200
+
197
201
# Event Scheduler
198
202
event_scheduler = <%= p('cf_mysql.mysql.event_scheduler') %>
199
203
You can’t perform that action at this time.
0 commit comments