Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15431247
D17551.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D17551.diff
View Options
diff --git a/src/daemon/PhutilDaemonOverseer.php b/src/daemon/PhutilDaemonOverseer.php
--- a/src/daemon/PhutilDaemonOverseer.php
+++ b/src/daemon/PhutilDaemonOverseer.php
@@ -187,9 +187,11 @@
foreach ($this->getDaemonPools() as $pool) {
$pool->updatePool();
- if ($pool->isHibernating()) {
- if ($this->shouldWakePool($pool)) {
- $pool->wakeFromHibernation();
+ if (!$this->shouldShutdown()) {
+ if ($pool->isHibernating()) {
+ if ($this->shouldWakePool($pool)) {
+ $pool->wakeFromHibernation();
+ }
}
}
@@ -204,7 +206,7 @@
$this->waitForDaemonFutures($futures);
if (!$futures) {
- if ($this->inGracefulShutdown) {
+ if ($this->shouldShutdown()) {
break;
}
}
@@ -226,7 +228,7 @@
break;
}
} else {
- if (!$this->inGracefulShutdown) {
+ if (!$this->shouldShutdown()) {
sleep(1);
}
}
@@ -505,4 +507,8 @@
return $should_wake;
}
+ private function shouldShutdown() {
+ return $this->inGracefulShutdown || $this->inAbruptShutdown;
+ }
+
}
diff --git a/src/daemon/PhutilDaemonPool.php b/src/daemon/PhutilDaemonPool.php
--- a/src/daemon/PhutilDaemonPool.php
+++ b/src/daemon/PhutilDaemonPool.php
@@ -10,6 +10,7 @@
private $argv;
private $lastAutoscaleUpdate;
+ private $inShutdown;
private function __construct() {
// <empty>
@@ -64,6 +65,10 @@
return $this->commandLineArguments;
}
+ private function shouldShutdown() {
+ return $this->inShutdown;
+ }
+
private function newDaemon() {
$config = $this->properties;
@@ -128,9 +133,11 @@
$daemon->didReceiveReloadSignal($signo);
break;
case PhutilDaemonOverseer::SIGNAL_GRACEFUL:
+ $this->inShutdown = true;
$daemon->didReceiveGracefulSignal($signo);
break;
case PhutilDaemonOverseer::SIGNAL_TERMINATE:
+ $this->inShutdown = true;
$daemon->didReceiveTerminateSignal($signo);
break;
default:
@@ -232,6 +239,10 @@
}
private function updateAutoscale() {
+ if ($this->shouldShutdown()) {
+ return;
+ }
+
// Don't try to autoscale more than once per second. This mostly stops the
// logs from getting flooded in verbose mode.
$now = time();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 11:17 AM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7226216
Default Alt Text
D17551.diff (2 KB)
Attached To
Mode
D17551: Don't awaken or scale pools during daemon shutdown
Attached
Detach File
Event Timeline
Log In to Comment