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
Adding a cron job with the code wp_schedule_event( 0, 'daily', 'cavalcade_daily' ); will cause the job to run constantly until it's run once for each day since 1/1/1970. Once the job has caught up it will run at midnight each day, as expected.
Adding a command such as wp cavalcade job restart {id} --skip-backlog will allow users to skip the backlog and ensure the job only runs once per day.
Adding a cron job with the code
wp_schedule_event( 0, 'daily', 'cavalcade_daily' );
will cause the job to run constantly until it's run once for each day since 1/1/1970. Once the job has caught up it will run at midnight each day, as expected.Adding a command such as
wp cavalcade job restart {id} --skip-backlog
will allow users to skip the backlog and ensure the job only runs once per day.Follow up to humanmade/Cavalcade-Runner#53
The text was updated successfully, but these errors were encountered: