diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index ef9cab17..96247b99 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -43,9 +43,6 @@ abstract class Pool extends Component */ protected function get($name) { - if ($this->_items[$name]->length() < 1) { - return [0, null]; - } [$timeout, $connection] = $this->_items[$name]->pop(); if (!$this->checkCanUse($name, $timeout, $connection)) { unset($client);