woocommerce_webhook_disabled_due_delivery_failures

woocommerce_webhook_disabled_due_delivery_failures

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_webhook_disabled_due_delivery_failures') is found 1 times:

  • /includes/class-wc-webhook.php line 602
     
    		if ( $failures > apply_filters( 'woocommerce_max_webhook_delivery_failures', 5 ) ) {
    			$this->set_status( 'disabled' );
    
    			do_action( 'woocommerce_webhook_disabled_due_delivery_failures', $this->get_id() );
    		} else {
    			$this->set_failure_count( ++$failures );
    		}
    
    		$this->save();
    	}