From 0d77f8223452abd760f68081cf731f6423da9bd8 Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Mon, 22 Feb 2021 01:01:15 +0800 Subject: [PATCH] modify --- System/Pool/Timeout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/Pool/Timeout.php b/System/Pool/Timeout.php index 02a85798..2234a1e0 100644 --- a/System/Pool/Timeout.php +++ b/System/Pool/Timeout.php @@ -60,7 +60,7 @@ trait Timeout protected function pop($channel, $name, $retain_number) { while ($channel->length() > $retain_number) { - [$timer, $connection] = $channel->pop(); + $connection = $channel->pop(); if ($connection) { unset($connection); }