action_scheduler_failure_period, $time_limit

action_scheduler_failure_period, $time_limit

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('action_scheduler_failure_period, $time_limit') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueCleaner.php line 207

    *
    * @param int $time_limit The number of seconds to allow an action to run before it is considered to have failed. Default 300 (5 minutes).
    */
    public function mark_failures( $time_limit = 300 ) {
    $timeout = apply_filters( ‘action_scheduler_failure_period’, $time_limit );

    if ( $timeout < 0 ) { return; } $cutoff = as_get_datetime_object( $timeout . ' seconds ago' ); [/php]