From 216bc1d89430811a0cb21f6795278856ef446c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 5 Jul 2021 11:05:19 +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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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);