We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d446bbe commit d247f2dCopy full SHA for d247f2d
src/Ipc.php
@@ -9,7 +9,7 @@
9
class Ipc extends \think\Manager
10
{
11
12
- protected $namespace = "\\think\\swoole\\ipc\\";
+ protected $namespace = "\\think\\swoole\\ipc\\driver\\";
13
14
protected function resolveConfig(string $name)
15
src/concerns/InteractsWithServer.php
@@ -86,11 +86,11 @@ public function start(string $envName): void
86
$this->pool->getProcess()->exit();
87
});
88
89
- $this->ipc->listenMessage($workerId);
90
-
91
$this->clearCache();
92
$this->prepareApplication($envName);
93
+ $this->ipc->listenMessage($workerId);
+
94
$this->triggerEvent(Constant::EVENT_WORKER_START);
95
96
$func($pool, $workerId);
0 commit comments