This commit is contained in:
2021-04-27 14:07:12 +08:00
parent 6b79e542af
commit 445cfc8f89
+2 -1
View File
@@ -146,6 +146,7 @@ class Connection extends Pool
* @param string $name * @param string $name
* @param mixed $config * @param mixed $config
* @return PDO * @return PDO
* @throws Exception
*/ */
public function createClient(string $name, mixed $config): PDO public function createClient(string $name, mixed $config): PDO
{ {
@@ -194,7 +195,7 @@ class Connection extends Pool
return; return;
} }
$this->error('recover db client ' . $coroutineName . ' length ' . $this->size($coroutineName)); $this->error('Worker ' . env('worker') . ' recover db client ' . $coroutineName . ' length ' . $this->size($coroutineName));
/** @var PDO $client */ /** @var PDO $client */
$client = Context::getContext($coroutineName); $client = Context::getContext($coroutineName);