Remove broken parameter 'table' in wgObjectCaches for CACHE_DB
$wgObjectCaches in DefaultSettings.php had the useless parameter 'table' for CACHE_DB. SqlBagOStuff actually uses 'tableName' parameter, it already defaults to 'objectcache' so there's no need to write it again. Change-Id: I5fe6b7c5f4d46cc8642c42861bc7078b795f5fb1
This commit is contained in:
parent
155c8de216
commit
60053df278
1 changed files with 1 additions and 1 deletions
|
|
@ -2092,7 +2092,7 @@ $wgLanguageConverterCacheType = CACHE_ANYTHING;
|
|||
*/
|
||||
$wgObjectCaches = array(
|
||||
CACHE_NONE => array( 'class' => 'EmptyBagOStuff' ),
|
||||
CACHE_DB => array( 'class' => 'SqlBagOStuff', 'table' => 'objectcache' ),
|
||||
CACHE_DB => array( 'class' => 'SqlBagOStuff' ),
|
||||
|
||||
CACHE_ANYTHING => array( 'factory' => 'ObjectCache::newAnything' ),
|
||||
CACHE_ACCEL => array( 'factory' => 'ObjectCache::newAccelerator' ),
|
||||
|
|
|
|||
Loading…
Reference in a new issue