From 78c2eb5352ad09b38b7988c2cd250b3709284aa3 Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Sat, 24 Apr 2021 16:11:16 +0800 Subject: [PATCH] modify --- System/Abstracts/Pool.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/System/Abstracts/Pool.php b/System/Abstracts/Pool.php index 38bdd095..b29ed535 100644 --- a/System/Abstracts/Pool.php +++ b/System/Abstracts/Pool.php @@ -191,13 +191,16 @@ abstract class Pool extends Component */ private function createByCallback($name, mixed $callback) { -// if (!$this->canCreate($name)) { -// return; -// } + if (!$this->canCreate($name)) { + return; + } if ($this->creates === -1 && !is_callable($callback)) { $this->creates = Timer::tick(1000, [$this, 'Heartbeat_detection']); } - $this->push($name, $this->createClient($name, $callback)); + if (!Context::hasContext('create::client::ing::' . $name)) { + $this->push($name, $this->createClient($name, $callback)); + Context::remove('create::client::ing::' . $name); + } }