Skip to content

Commit

Permalink
Enable warmup on wikis beginning with q and r (#5366)
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Nov 6, 2023
1 parent dfbd637 commit d677be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GlobalCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
'xedwiki',
];
// $disableWarmup = in_array( $wgDBname, $disableWarmupArray );
$enableWarmup = ( $beta || preg_match( '/^([0-9]|a|b|c|d|e|f|g|h|i|j|k|l|n|m|o|p)/', $wgDBname ) );
$enableWarmup = ( $beta || preg_match( '/^([0-9]|a|b|c|d|e|f|g|h|i|j|k|l|n|m|o|p|q|r)/', $wgDBname ) );
$wgParsoidCacheConfig = [
// Defaults to MainStash
'StashType' => null,
Expand Down

0 comments on commit d677be6

Please sign in to comment.