action_scheduler_execution_ignored, $action_id, $context

action_scheduler_execution_ignored, $action_id, $context

Hook Type: action

See hook in core

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

do_action('action_scheduler_execution_ignored, $action_id, $context') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php line 95
    				do_action( 'action_scheduler_before_execute', $action_id, $context );
    
    				if ( ActionScheduler_Store::STATUS_PENDING !== $this->store->get_status( $action_id ) ) {
    					$valid_action = false;
    					do_action( 'action_scheduler_execution_ignored', $action_id, $context );
    					return;
    				}
    
    				do_action( 'action_scheduler_begin_execute', $action_id, $context );
    
    				$action = $this->store->fetch_action( $action_id );