X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fdeferred%2FDeferredUpdates.php;h=3c4833c7f0881917edb6dcaf433ff4d512d85fd5;hp=e8e250b5516be4af6aaf93238c8349eb6f2dae3f;hb=5120937028f768749d058aa91dde82a96de0af1c;hpb=45b00db7330f12180f4b3cd9ba1404a710ee75b6 diff --git a/includes/deferred/DeferredUpdates.php b/includes/deferred/DeferredUpdates.php index e8e250b551..3c4833c7f0 100644 --- a/includes/deferred/DeferredUpdates.php +++ b/includes/deferred/DeferredUpdates.php @@ -250,6 +250,8 @@ class DeferredUpdates { // Run only the job enqueue logic to complete the update later $spec = $update->getAsJobSpecification(); JobQueueGroup::singleton( $spec['wiki'] )->push( $spec['job'] ); + } elseif ( $update instanceof TransactionRoundDefiningUpdate ) { + $update->doUpdate(); } else { // Run the bulk of the update now $fnameTrxOwner = get_class( $update ) . '::doUpdate';