You are here

public function Crontab::defaultConfiguration in Ultimate Cron 8.2

Default settings. @todo: $catch_up is randomly failing when value is low in some situation. 0 value is ignoring catch_up checks.

Overrides CronPlugin::defaultConfiguration

1 call to Crontab::defaultConfiguration()
Simple::defaultConfiguration in src/Plugin/ultimate_cron/Scheduler/Simple.php
Default settings. @todo: $catch_up is randomly failing when value is low in some situation. 0 value is ignoring catch_up checks.
1 method overrides Crontab::defaultConfiguration()
Simple::defaultConfiguration in src/Plugin/ultimate_cron/Scheduler/Simple.php
Default settings. @todo: $catch_up is randomly failing when value is low in some situation. 0 value is ignoring catch_up checks.

File

src/Plugin/ultimate_cron/Scheduler/Crontab.php, line 24

Class

Crontab
Crontab scheduler.

Namespace

Drupal\ultimate_cron\Plugin\ultimate_cron\Scheduler

Code

public function defaultConfiguration() {
  return array(
    'rules' => array(
      '0+@ */3 * * *',
    ),
    'catch_up' => '0',
  );
}