Skip to content
Snippets Groups Projects
Commit 735f55e5 authored by catch's avatar catch
Browse files

Issue #2319177 by swentel, fago: Fixed Cron lock time limit is too short and...

Issue #2319177 by swentel, fago: Fixed Cron lock time limit is too short and does not prevent multiple, concurrent cron runs.
parent 0f28b515
Branches 2.x
Tags 2.1.0
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -121,7 +121,7 @@ public function run() {
$return = FALSE;
// Try to acquire cron lock.
if (!$this->lock->acquire('cron', 240.0)) {
if (!$this->lock->acquire('cron', 900.0)) {
// Cron is still running normally.
$this->logger->warning('Attempting to re-run cron while it is already running.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment