woocommerce_batch_processor_watchdog_delay_seconds

woocommerce_batch_processor_watchdog_delay_seconds

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.2.3

apply_filters('woocommerce_batch_processor_watchdog_delay_seconds') is found 1 times:

  • /src/Internal/BatchProcessing/BatchProcessingController.php line 123
    			 * @since 8.2.0
    			 *
    			 * @param int $delay Time, in seconds, before the watchdog process will run. Defaults to 3600 (1 hour).
    			 */
    			$time += apply_filters( 'woocommerce_batch_processor_watchdog_delay_seconds', HOUR_IN_SECONDS );
    		}
    
    		if ( ! as_has_scheduled_action( self::WATCHDOG_ACTION_NAME ) ) {
    			as_schedule_single_action(
    				$time,
    				self::WATCHDOG_ACTION_NAME,