We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1eebdd + e321ada commit 2801d45Copy full SHA for 2801d45
1 file changed
src/Uecode/Bundle/DaemonBundle/Command/ReactCommand.php
@@ -30,14 +30,6 @@ abstract protected function prepareLoop(EventLoop\LoopInterface $loop);
30
private function initLoop()
31
{
32
$this->eventLoop = EventLoop\Factory::create();
33
- $this->eventLoop->addPeriodicTimer(
34
- 0.1,
35
- function () {
36
- $this->runEvents(self::EVENT_CYCLE_START);
37
- $this->daemonLogic();
38
- $this->runEvents(self::EVENT_CYCLE_END);
39
- }
40
- );
41
$this->prepareLoop($this->eventLoop);
42
43
return $this->eventLoop;
0 commit comments