Replies: 1 comment 10 replies
-
Maybe related to this PR? #47725 |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Laravel Version
10.13.5
PHP Version
8.2.7
Database Driver & Version
N/A
Description
Stopping an artisan command with CTRL+C (SIGINT) appears to skip gracefully terminating the app, since no registered terminating callbacks are run when this happens.
Since we've got support for handling signals in artisan commands now, this feels like something artisan commands could do out of the box
Steps To Reproduce
php artisan regular
- A "Terminating!" message will be in the logsphp artisan long
, then stop it with CTRL+C - No new message will be in the logsphp artisan long-term
, then stop it with CTRL+C - Another "Terminating!" message will be in the logsBeta Was this translation helpful? Give feedback.
All reactions