From 30d805f41da1693958dd2e1f4c6850a97ae1a9b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Fri, 4 Sep 2020 18:57:44 +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/Abstracts/Pool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index 942c0e47..145fca5b 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -51,7 +51,7 @@ abstract class Pool extends Component if ($timeout != -1) { $client = $this->_items[$name]->pop($timeout); } else { - $client = $this->_items[$name]->pop(60); + $client = $this->_items[$name]->pop(); } if (!$this->checkCanUse(...$client)) { unset($client);