diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index 39d58ea5..7fa0b407 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -44,7 +44,7 @@ abstract class Pool extends Component */ protected function get($name): array { - [$timeout, $connection] = $this->_items[$name]->pop(); + [$timeout, $connection] = $this->_items[$name]->pop(30); if (!$this->checkCanUse($name, $timeout, $connection)) { unset($client); return [0, null];