This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
Mysql stopped working while using this package #78
Unanswered
nirmalgoswami
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, thank you for providing solution to run cron every x seconds
Working fine :
$schedule->command('abc')->everyMinute()
Not Working :
$shortSchedule->command('abc')->everySeconds(60)->withoutOverlapping()
i want to run script every 20 seconds but short schedule was killing mysql server later tried with 60 seconds to debug whether it is issue related server or command, i find out that
schedule:run
working fine butshort-schedule:run
is killing mysql server even with 60 secondsany help ? should i use sleep method with native laravel schedule command ? or any setting can be done with this package to prevent to stop mysql server
Beta Was this translation helpful? Give feedback.
All reactions