mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
NativeReactor needs to always end in stopped state
(under normal circumstances)
This commit is contained in:
parent
a78cc09dac
commit
d3212d4638
@ -1,3 +1,8 @@
|
|||||||
|
### 1.0.9
|
||||||
|
|
||||||
|
- Fix NativeReactor not ending up in stopped state if primary
|
||||||
|
callback didn't install any events.
|
||||||
|
|
||||||
### 1.0.8
|
### 1.0.8
|
||||||
|
|
||||||
- Fix NativeReactor running a busy loop if no timers are active.
|
- Fix NativeReactor running a busy loop if no timers are active.
|
||||||
|
@ -58,6 +58,7 @@ class NativeReactor implements Reactor {
|
|||||||
$this->state = self::STARTING;
|
$this->state = self::STARTING;
|
||||||
$watcherId = $this->immediately($onStart);
|
$watcherId = $this->immediately($onStart);
|
||||||
if (!$this->tryImmediate($this->watchers[$watcherId]) || empty($this->keepAliveCount)) {
|
if (!$this->tryImmediate($this->watchers[$watcherId]) || empty($this->keepAliveCount)) {
|
||||||
|
$this->state = self::STOPPED;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user