From 0a26df6743afdfb453ccf4371a71a28ceb86ae6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Tue, 16 Feb 2021 23:51:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/Pool/Connection.php | 1 + 1 file changed, 1 insertion(+) diff --git a/System/Pool/Connection.php b/System/Pool/Connection.php index 5a9d37bf..7e2eef12 100644 --- a/System/Pool/Connection.php +++ b/System/Pool/Connection.php @@ -169,6 +169,7 @@ class Connection extends Pool */ private function newClient($config, $coroutineName): PDO|null { + $this->printClients($config['cds'], $coroutineName, true); return $this->createConnect($this->parseConfig($config, $coroutineName), $coroutineName, function ($cds, $username, $password, $charset, $coroutineName) { $link = new PDO($cds, $username, $password, [ PDO::ATTR_EMULATE_PREPARES => false,