We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
10.14.1
8.2.6
not relevant
Since this commit , running an Artisan::call() in a Job overwrites the PCNTL signal management of the worker:queue with that of Symfony.
Artisan::call()
This makes it possible to stop worker processes instantly without finishing the current Job.
This creates a lot of problems when using Horizon in "auto" mode.
public function handle(): void { Log::debug('Job start'); Artisan::call('about'); Log::debug('Start waiting'); sleep(60); Log::debug('Job terminated'); }
The text was updated successfully, but these errors were encountered:
PR was merged. Thanks!
Sorry, something went wrong.
No branches or pull requests
Laravel Version
10.14.1
PHP Version
8.2.6
Database Driver & Version
not relevant
Description
Since this commit , running an
Artisan::call()
in a Job overwrites the PCNTL signal management of the worker:queue with that of Symfony.This makes it possible to stop worker processes instantly without finishing the current Job.
This creates a lot of problems when using Horizon in "auto" mode.
Steps To Reproduce
The text was updated successfully, but these errors were encountered: