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
In DispatcherJob.php::getPayload(), it doesn't add '@handle' at the end.
Although in Queue.php::modifyPayload() it adds '@handle' at the end, in Queue.php::pushRaw() it assigns $payload = $payload['data'], so at last the $payload['job'] doesn't have '@handle' anymore, which cause the problem that the queue message can't be handled.
The text was updated successfully, but these errors were encountered:
I thought that the handle will be added only when you pop the job from the queue. Since you are storing a plain sqs job you will not store anything related to the job as Laravel standard jobs do. That means that even if handle is not in the payload it will be added when the job is popped from the queue and prepared to be processed in Queue.php::modifyPayload().
In
DispatcherJob.php::getPayload()
, it doesn't add '@handle' at the end.Although in
Queue.php::modifyPayload()
it adds '@handle' at the end, inQueue.php::pushRaw()
it assigns$payload = $payload['data']
, so at last the$payload['job']
doesn't have '@handle' anymore, which cause the problem that the queue message can't be handled.The text was updated successfully, but these errors were encountered: