Index: trunk/phase3/includes/filerepo/backend/lockmanager/DBLockManager.php |
— | — | @@ -55,6 +55,8 @@ |
56 | 56 | * @param Array $config |
57 | 57 | */ |
58 | 58 | public function __construct( array $config ) { |
| 59 | + parent::__construct( $config ); |
| 60 | + |
59 | 61 | $this->dbServers = isset( $config['dbServers'] ) |
60 | 62 | ? $config['dbServers'] |
61 | 63 | : array(); // likely just using 'localDBMaster' |
Index: trunk/phase3/includes/filerepo/backend/lockmanager/FSLockManager.php |
— | — | @@ -35,6 +35,7 @@ |
36 | 36 | */ |
37 | 37 | function __construct( array $config ) { |
38 | 38 | parent::__construct( $config ); |
| 39 | + |
39 | 40 | $this->lockDir = $config['lockDirectory']; |
40 | 41 | } |
41 | 42 | |
Index: trunk/phase3/includes/filerepo/backend/lockmanager/LSLockManager.php |
— | — | @@ -50,6 +50,8 @@ |
51 | 51 | * @param Array $config |
52 | 52 | */ |
53 | 53 | public function __construct( array $config ) { |
| 54 | + parent::__construct( $config ); |
| 55 | + |
54 | 56 | $this->lockServers = $config['lockServers']; |
55 | 57 | // Sanitize srvsByBucket config to prevent PHP errors |
56 | 58 | $this->srvsByBucket = array_filter( $config['srvsByBucket'], 'is_array' ); |