laravel-sqs-fifo-queue
laravel-sqs-fifo-queue copied to clipboard
Cannot use integer as messageGroupId anymore
After upgrading from Laravel 8 to Laravel 9 we upgraded to your latest version but now all the places where we used an integer as messageGroupId are failing.
In QueryCompatibleInputMiddleware.php line 165:
The provided type for `MessageGroupId` value was `integer`. The modeled type is `string`.
Should public function onMessageGroup($messageGroupId) only accept strings (or cast inputs into string)?
Thank you