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 575060f commit 5b1640bCopy full SHA for 5b1640b
src/SqsQueueReaderServiceProvider.php
@@ -36,9 +36,10 @@ public function boot(): void
36
Log::debug('Job payload==', [$data]);
37
38
$batchIds = array_column($data, 'batchIds');
39
- Log::debug('Job array_column==', [$data]);
+ Log::debug('Job array_column==', [$batchIds]);
40
$batchIds = array_chunk($batchIds, 10);
41
- Log::debug('Job array_chunk==', [$data]);
+ Log::debug('Job array_chunk==', [$batchIds]);
42
+
43
foreach ($batchIds as $batch) {
44
//Deletes up to ten messages from the specified queue.
45
$result = $event->job->deleteMessageBatch([
0 commit comments