Page MenuHomePhabricator

D13504.diff
No OneTemporary

D13504.diff

diff --git a/src/applications/drydock/worker/DrydockAllocatorWorker.php b/src/applications/drydock/worker/DrydockAllocatorWorker.php
--- a/src/applications/drydock/worker/DrydockAllocatorWorker.php
+++ b/src/applications/drydock/worker/DrydockAllocatorWorker.php
@@ -116,6 +116,12 @@
continue;
}
+ if ($lease->getAttribute('resourceID') !== null &&
+ $candidate->getID() !== $lease->getAttribute('resourceID')) {
+ unset($pool[$key]);
+ continue;
+ }
+
$blueprint = $blueprints[$candidate->getBlueprintPHID()];
$implementation = $blueprint->getImplementation();
@@ -156,6 +162,12 @@
continue;
}
+ if ($lease->getAttribute('resourceID') !== null &&
+ $candidate->getID() !== $lease->getAttribute('resourceID')) {
+ unset($pool[$key]);
+ continue;
+ }
+
$blueprint = $blueprints[$candidate->getBlueprintPHID()];
$implementation = $blueprint->getImplementation();
@@ -185,6 +197,21 @@
if ($resource) {
$lock->unlock();
} else {
+ if ($lease->getAttribute('resourceID') !== null) {
+ $reason = pht(
+ 'Could not lease against specific resource %d.',
+ $lease->getAttribute('resourceID'));
+
+ $lease->setStatus(DrydockLeaseStatus::STATUS_BROKEN);
+ $lease->setBrokenReason($reason);
+ $lease->save();
+
+ $this->logToDrydock($reason);
+
+ $lock->unlock();
+ return;
+ }
+
$blueprints = id(new DrydockBlueprintQuery())
->setViewer(PhabricatorUser::getOmnipotentUser())
->execute();

File Metadata

Mime Type
text/plain
Expires
Sun, Mar 9, 11:05 AM (3 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7388410
Default Alt Text
D13504.diff (1 KB)

Event Timeline