We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76091e2 commit 7a14a83Copy full SHA for 7a14a83
src/Extractor.php
@@ -68,6 +68,9 @@ public function extract(): iterable
68
{
69
while (true) {
70
$message = $this->channel->get($this->topic);
71
+ if ($message === null) {
72
+ break;
73
+ }
74
$this->channel->ack($message);
75
76
yield new AcceptanceResultBucket(\json_decode($message->content, true));
0 commit comments