Skip to content

Commit

Permalink
Don't use compression in $wgPoolCounterConf
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Nov 8, 2023
1 parent 3178a6a commit 448b11c
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions GlobalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,9 @@
'[2a10:6740::6:306]:6379'
],
'redisConfig' => [
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
'FileRender' => [
Expand All @@ -636,8 +637,9 @@
'[2a10:6740::6:306]:6379'
],
'redisConfig' => [
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
'FileRenderExpensive' => [
Expand All @@ -652,8 +654,9 @@
'[2a10:6740::6:306]:6379'
],
'redisConfig' => [
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
'SpecialContributions' => [
Expand All @@ -667,8 +670,9 @@
'[2a10:6740::6:306]:6379'
],
'redisConfig' => [
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
'TranslateFetchTranslators' => [
Expand All @@ -683,8 +687,9 @@
'[2a10:6740::6:306]:6379'
],
'redisConfig' => [
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
'WikiLambdaFunctionCall' => [
Expand All @@ -702,7 +707,6 @@
'connectTimeout' => 2,
'readTimeout' => 2,
'password' => $wmgRedisPassword,
'compression' => 'gzip',
],
],
];

0 comments on commit 448b11c

Please sign in to comment.