laravel-async-queue icon indicating copy to clipboard operation
laravel-async-queue copied to clipboard

Laravel Async Queue Driver

Results 42 laravel-async-queue issues
Sort by recently updated
recently updated
newest added

Hi there, I've been using the laravel-async-queue library in my Laravel 8 project, and I've encountered an issue with the Process class. Specifically, the startProcess method of Barryvdh\Queue\AsyncQueue appears to...

Symfony Process Does not accept array before Laravel 7 So The app version should be checked

You're using database under the hood which is not async so....

Hello, I identified a problem when using queue: listen/works processing the same queue where the async job is, the job ends up being processed multiple times or displays exception of...

Hello, an alternative to work as expected the later method: On class: \Barryvdh\Queue\AsyncQueue `public function getJobFromId($id, bool $waitUntilAvaible = true)` ` {` ` $job = $this->database->table($this->table)` ` ->where('id', $id)` `...

Code was not working for me any more. Change these lines to make work again: //$process = new Process($command, $cwd); //$process->run(); Process::fromShellCommandline($command,$cwd)->run();

In new symfony process, command should be called as array... ```$process = new Process([$command], $cwd);```

Dear Friends, How can I get the Laravel 5.8 supported version through composer? This is I am getting while I try using composer, composer require barryvdh/laravel-async-queue Using version ^0.7.2 for...

Hello when disapatch Job in Storage logs show this error and not execute JOB ` [2019-07-16 09:40:45] local.ERROR: SQLSTATE[HY000] [2002] Unknown error while connecting (SQL: select * from `jobs` where...