diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index 94239fc1..a3743be6 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -299,13 +299,12 @@ abstract class Pool extends Component */ public function push(string $name, mixed $client) { - var_dump($name); if (Coroutine::getCid() === -1) { return; } - var_dump($name, $client); $channel = $this->getChannel($name); if (!$channel->isFull()) { + var_dump($name); $channel->push($client); } unset($client);