From 77b457b620a697c0c7500151081738b4b711eedb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 5 Jul 2021 11:04:40 +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, 2 insertions(+) diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index 70620d83..94239fc1 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -299,9 +299,11 @@ 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()) { $channel->push($client);