From 3f60d96f42d4098c88f558f96c5436cc6477384b Mon Sep 17 00:00:00 2001 From: Alex Mironov Date: Thu, 25 Sep 2025 15:21:33 +0300 Subject: [PATCH] Made `Hyperf\Kafka\Annotation\Consumer::$pool` empty by default --- src/Annotation/Consumer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Annotation/Consumer.php b/src/Annotation/Consumer.php index ca49681..e0d21d3 100644 --- a/src/Annotation/Consumer.php +++ b/src/Annotation/Consumer.php @@ -22,7 +22,7 @@ class Consumer extends AbstractAnnotation * @param string|string[] $topic */ public function __construct( - public string $pool = 'default', + public string $pool = '', public array|string $topic = '', public ?string $groupId = null, public ?string $memberId = null,