From: jenkins-bot Date: Mon, 13 May 2019 11:55:30 +0000 (+0000) Subject: Merge "move 7zip.inc to a regular php file" X-Git-Tag: 1.34.0-rc.0~1705 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%29%20.%20%22?a=commitdiff_plain;h=8fb34f1903a4c52893ce17c55f3671b8b999ca28;hp=ee66a53468d58ddf9eb2067504a5253c3e553661;p=lhc%2Fweb%2Fwiklou.git Merge "move 7zip.inc to a regular php file" --- diff --git a/RELEASE-NOTES-1.34 b/RELEASE-NOTES-1.34 index faab1e41be..6113a5f33b 100644 --- a/RELEASE-NOTES-1.34 +++ b/RELEASE-NOTES-1.34 @@ -154,6 +154,7 @@ because of Phabricator reports. * ApiQueryBase::prepareUrlQuerySearchString(), deprecated in 1.33, has been removed. * ChangeTags::purgeTagUsageCache(), deprecated in 1.33, has been removed. +* JobQueueGroup::pushLazyJobs(), deprecated in 1.33, has been removed. * … === Deprecations in 1.34 === diff --git a/includes/jobqueue/JobQueueGroup.php b/includes/jobqueue/JobQueueGroup.php index 83e5fb24bf..7a0d4eaff1 100644 --- a/includes/jobqueue/JobQueueGroup.php +++ b/includes/jobqueue/JobQueueGroup.php @@ -187,10 +187,6 @@ class JobQueueGroup { /** * Buffer jobs for insertion via push() or call it now if in CLI mode * - * Note that pushLazyJobs() is registered as a deferred update just before - * DeferredUpdates::doUpdates() in MediaWiki and JobRunner classes in order - * to be executed as the very last deferred update (T100085, T154425). - * * @param IJobSpecification|IJobSpecification[] $jobs A single Job or a list of Jobs * @return void * @since 1.26 @@ -214,17 +210,6 @@ class JobQueueGroup { DeferredUpdates::addUpdate( new JobQueueEnqueueUpdate( $this->domain, $jobs ) ); } - /** - * Push all jobs buffered via lazyPush() into their respective queues - * - * @return void - * @since 1.26 - * @deprecated Since 1.33 Not needed anymore - */ - public static function pushLazyJobs() { - wfDeprecated( __METHOD__, '1.33' ); - } - /** * Pop a job off one of the job queues *