Skip to content

Commit 4ff6107

Browse files
committed
Removing query_cache options that are no longer supported in MySQL >= 8.0
1 parent 204cfd4 commit 4ff6107

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

manifests/params.pp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,12 +455,18 @@
455455
},
456456
'mysqld-5.5' => {
457457
'myisam-recover' => 'BACKUP',
458+
'query_cache_limit' => '1M',
459+
'query_cache_size' => '16M',
458460
},
459461
'mysqld-5.6' => {
460462
'myisam-recover-options' => 'BACKUP',
463+
'query_cache_limit' => '1M',
464+
'query_cache_size' => '16M',
461465
},
462466
'mysqld-5.7' => {
463467
'myisam-recover-options' => 'BACKUP',
468+
'query_cache_limit' => '1M',
469+
'query_cache_size' => '16M',
464470
},
465471
'mysqld' => {
466472
'basedir' => $mysql::params::basedir,
@@ -474,8 +480,6 @@
474480
'max_connections' => '151',
475481
'pid-file' => $mysql::params::pidfile,
476482
'port' => '3306',
477-
'query_cache_limit' => '1M',
478-
'query_cache_size' => '16M',
479483
'skip-external-locking' => true,
480484
'socket' => $mysql::params::socket,
481485
'ssl' => false,

0 commit comments

Comments
 (0)