Drupal Troubleshooting¶
Releasing Drupal Cron Lock¶
drush sqlq "DELETE FROM semaphore WHERE name = 'cron';"
# Execute `php-eval` drush's command to release cron's flag
drush php-eval "\Drupal::lock()->release('cron');"
References:
Drupal 8: Re-run cron while it is already running
Drupal 8 drush: Attempting to re-run cron while it is already running [FIXED].