This commit is contained in:
2021-12-06 15:39:35 +08:00
parent bf0d2f7611
commit 89bd7a8ee9
+22 -16
View File
@@ -4,7 +4,6 @@ namespace Database\Mysql;
use Exception; use Exception;
use Kiri\Abstracts\Logger; use Kiri\Abstracts\Logger;
use Kiri\Context;
use Kiri\Kiri; use Kiri\Kiri;
use Kiri\Pool\StopHeartbeatCheck; use Kiri\Pool\StopHeartbeatCheck;
use PDOStatement; use PDOStatement;
@@ -67,21 +66,28 @@ class PDO implements StopHeartbeatCheck
if (env('state', 'start') == 'exit') { if (env('state', 'start') == 'exit') {
return; return;
} }
if ($this->_timer === -1 && Context::inCoroutine()) { if ($this->_timer === -1) {
$this->_timer = Timer::tick(1000, function () { $this->_timer = Timer::tick(1000, fn() => $this->waite());
try { }
if (env('state', 'start') == 'exit') { }
Kiri::getDi()->get(Logger::class)->critical('timer end');
$this->stopHeartbeatCheck();
} /**
if (time() - $this->_last > 10 * 60) { * @throws Exception
$this->stopHeartbeatCheck(); */
$this->pdo = null; private function waite(): void
} {
} catch (\Throwable $throwable) { try {
error($throwable); if (env('state', 'start') == 'exit') {
} Kiri::getDi()->get(Logger::class)->critical('timer end');
}); $this->stopHeartbeatCheck();
}
if (time() - $this->_last > 10 * 60) {
$this->stopHeartbeatCheck();
$this->pdo = null;
}
} catch (\Throwable $throwable) {
error($throwable);
} }
} }