Fix broken $wgExternalServers example setting
authorAaron Schulz <aschulz@wikimedia.org>
Mon, 19 Sep 2016 22:16:29 +0000 (15:16 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Mon, 19 Sep 2016 22:16:29 +0000 (15:16 -0700)
Just reference $wgDBservers instead, which uses the same format.

Change-Id: Iaa32cb067f9487b459925310ac4c52efe3f4a3f1

includes/DefaultSettings.php

index 135c3e5..f0e9e83 100644 (file)
@@ -2085,7 +2085,7 @@ $wgExternalStores = [];
  * Create a cluster named 'cluster1' containing three servers:
  * @code
  * $wgExternalServers = [
- *     'cluster1' => [ 'srv28', 'srv29', 'srv30' ]
+ *     'cluster1' => <array in the same format as $wgDBservers>
  * ];
  * @endcode
  *