Skip to content

Commit

Permalink
bugfix: update batching integ
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean O'Brien committed Nov 6, 2023
1 parent ac71213 commit 25455aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integ/BatchingContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function iDeleteABatchOfMessages($messageCount)
while (count($messages) < $messageCount) {
$result = $this->client->receiveMessage([
'QueueUrl' => $queueUrl,
'MaxNumberOfMessages' => $messageCount,
'MaxNumberOfMessages' => (int) $messageCount,
]);

foreach ($result['Messages'] as $message) {
Expand Down

0 comments on commit 25455aa

Please sign in to comment.