This commit is contained in:
2023-08-16 14:25:19 +08:00
parent 25296ee714
commit be09229577
+4 -1
View File
@@ -76,7 +76,7 @@ class Connection extends Component
/** /**
* @var array * @var array
*/ */
public array $attributes = []; public array $attributes = [];
/** /**
@@ -152,6 +152,9 @@ class Connection extends Component
*/ */
protected function getNormalClientHealth(): PDO protected function getNormalClientHealth(): PDO
{ {
if (!$this->pool()->hasItem($this->cds)) {
return $this->newConnect();
}
/** @var PDO $client */ /** @var PDO $client */
[$client, $time] = $this->pool()->get($this->cds); [$client, $time] = $this->pool()->get($this->cds);
if ((time() - $time) > $this->idle_time) { if ((time() - $time) > $this->idle_time) {