You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, in the /src/Sqs/Queue.php here, it is createPayload($job, $data = '', $queue = null), which is not align to the parent.
So that the queue name is passed as $data here.
The text was updated successfully, but these errors were encountered:
Issue: Queue names in
sqs-plain.php
is not detected. Always use 'default-handler' instead.Reason of the issue:
in the latest Laravel (v5.8), in
Illuminate/Queue/Queue.php
it iscreatePayload($job, $queue, $data = '')
(ref: https://laravel.com/api/5.8/Illuminate/Queue/Queue.html#method_createPayload)
However, in the
/src/Sqs/Queue.php
here, it iscreatePayload($job, $data = '', $queue = null)
, which is not align to the parent.So that the queue name is passed as
$data
here.The text was updated successfully, but these errors were encountered: