Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15404814
D16492.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16492.diff
View Options
diff --git a/src/applications/config/controller/PhabricatorConfigClusterRepositoriesController.php b/src/applications/config/controller/PhabricatorConfigClusterRepositoriesController.php
--- a/src/applications/config/controller/PhabricatorConfigClusterRepositoriesController.php
+++ b/src/applications/config/controller/PhabricatorConfigClusterRepositoriesController.php
@@ -153,6 +153,14 @@
$versions = idx($repository_versions, $repository_phid, array());
+ // Filter out any versions for devices which are no longer active.
+ foreach ($versions as $key => $version) {
+ $version_device_phid = $version->getDevicePHID();
+ if (empty($active_devices[$version_device_phid])) {
+ unset($versions[$key]);
+ }
+ }
+
$leaders = 0;
foreach ($versions as $version) {
if ($version->getRepositoryVersion() == $leader_version) {
diff --git a/src/applications/diffusion/protocol/DiffusionRepositoryClusterEngine.php b/src/applications/diffusion/protocol/DiffusionRepositoryClusterEngine.php
--- a/src/applications/diffusion/protocol/DiffusionRepositoryClusterEngine.php
+++ b/src/applications/diffusion/protocol/DiffusionRepositoryClusterEngine.php
@@ -104,7 +104,7 @@
// We identify all the cluster leaders and reset their version to 0.
// We identify all the cluster followers and demote them.
- // This allows the cluter to start over again at version 0 but keep the
+ // This allows the cluster to start over again at version 0 but keep the
// same leaders.
if ($versions) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 19, 9:13 AM (3 d, 21 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7390100
Default Alt Text
D16492.diff (1 KB)
Attached To
Mode
D16492: Ignore repository versions on inactive devices in "Repository Servers" panel in Config
Attached
Detach File
Event Timeline
Log In to Comment