Fix missing batch action arguments

This commit is contained in:
Joshua Flowers 2019-04-12 13:52:44 +08:00
parent f213f5cb66
commit fcf0994276
1 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ class WC_Admin_Reports_Sync {
add_action( 'wp_loaded', array( __CLASS__, 'orders_lookup_update_init' ) ); add_action( 'wp_loaded', array( __CLASS__, 'orders_lookup_update_init' ) );
// Initialize scheduled action handlers. // Initialize scheduled action handlers.
add_action( self::QUEUE_BATCH_ACTION, array( __CLASS__, 'queue_batches' ), 10, 3 ); add_action( self::QUEUE_BATCH_ACTION, array( __CLASS__, 'queue_batches' ), 10, 4 );
add_action( self::QUEUE_DEPEDENT_ACTION, array( __CLASS__, 'queue_dependent_action' ), 10, 3 ); add_action( self::QUEUE_DEPEDENT_ACTION, array( __CLASS__, 'queue_dependent_action' ), 10, 3 );
add_action( self::CUSTOMERS_BATCH_ACTION, array( __CLASS__, 'customer_lookup_process_batch' ) ); add_action( self::CUSTOMERS_BATCH_ACTION, array( __CLASS__, 'customer_lookup_process_batch' ) );
add_action( self::ORDERS_BATCH_ACTION, array( __CLASS__, 'orders_lookup_process_batch' ), 10, 3 ); add_action( self::ORDERS_BATCH_ACTION, array( __CLASS__, 'orders_lookup_process_batch' ), 10, 3 );
@ -352,8 +352,8 @@ class WC_Admin_Reports_Sync {
} else { } else {
// Otherwise, queue the single batches. // Otherwise, queue the single batches.
for ( $i = $range_start; $i <= $range_end; $i++ ) { for ( $i = $range_start; $i <= $range_end; $i++ ) {
array_unshift( $action_args, $i ); $batch_action_args = array_merge( array( $i ), $action_args );
self::queue()->schedule_single( $action_timestamp, $single_batch_action, $action_args, self::QUEUE_GROUP ); self::queue()->schedule_single( $action_timestamp, $single_batch_action, $batch_action_args, self::QUEUE_GROUP );
} }
} }
} }