action_scheduler_execution_ignored action-hook . WC 1.0
Usage
add_action( 'action_scheduler_execution_ignored', 'action_function_name_5498', 10, 2 ); function action_function_name_5498( $action_id, $context ){ // action... }
- $action_id
- -
- $context
- -
Where the hook is called
action_scheduler_execution_ignored
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php 56
do_action( 'action_scheduler_execution_ignored', $action_id, $context );
Where in WP core the hook is used WooCommerce
woocommerce/packages/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php 22
add_action( 'action_scheduler_execution_ignored', array( $this, 'untrack_action' ), 0, 0 );
woocommerce/packages/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php 32
remove_action( 'action_scheduler_execution_ignored', array( $this, 'untrack_action' ), 0 );
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 57
add_action( 'action_scheduler_execution_ignored', array( $this, 'log_ignored_action' ), 10, 2 );