This commit is contained in:
2021-11-04 18:36:17 +08:00
parent 5303c05274
commit 49d435e4a5
@@ -9,6 +9,7 @@ use Kiri\Exception\ConfigException;
use Kiri\Kiri; use Kiri\Kiri;
use Swoole\Coroutine; use Swoole\Coroutine;
use Swoole\Coroutine\Barrier; use Swoole\Coroutine\Barrier;
use Swoole\Process;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
@@ -80,7 +81,6 @@ class FileChangeCustomProcess extends Command
} }
/** /**
* @param $code * @param $code
* @param $message * @param $message
@@ -104,9 +104,14 @@ class FileChangeCustomProcess extends Command
public function trigger_reload($cid) public function trigger_reload($cid)
{ {
Kiri::getDi()->get(Logger::class)->warning('change reload'); Kiri::getDi()->get(Logger::class)->warning('change reload');
if (is_resource($this->source)) {
$content = file_get_contents(storage('.swoole.pid'));
if (!empty($content)) {
Process::kill(storage('.swoole.pid'), 15);
proc_close($this->source); proc_close($this->source);
} }
$this->source = proc_open("php " . APP_PATH . "kiri.php sw:server restart", [], $this->pipes); $this->source = proc_open("php " . APP_PATH . "kiri.php sw:server restart", [], $this->pipes);
} }