[08:00:03] + ulimit -n 512 [08:00:03] + LOCKFILE=/var/lock/scap.operations_mediawiki-config.lock [08:00:03] + '[' -O /var/lock/scap.operations_mediawiki-config.lock ']' [08:00:03] + /usr/bin/scap version [08:00:04] 4.261.0 [08:00:05] + /usr/bin/scap prep auto [08:00:06] 08:00:06 Started scap prep auto [08:00:06] 08:00:06 Update https://gerrit.wikimedia.org/r/operations/mediawiki-config (master branch) in /srv/mediawiki-staging [08:00:06] 08:00:06 https://gerrit.wikimedia.org/r/operations/mediawiki-config checked out at commit 33bdee01cf33ed4742c887ab23ef991d4776248e [08:00:07] 08:00:07 Update https://gerrit.wikimedia.org/r/mediawiki/core (master branch) in /srv/mediawiki-staging/php-master [08:00:08] 08:00:08 https://gerrit.wikimedia.org/r/mediawiki/core checked out at commit ee8d03b02690e733a09fdc57915f996d98f9415d [08:00:08] 08:00:08 Update https://gerrit.wikimedia.org/r/mediawiki/extensions (master branch) in /srv/mediawiki-staging/php-master/extensions [08:00:11] 08:00:11 Changes pulled down since last fetch: [08:00:11] commit b8ebf767ac41b4dd13d557ddd28ad76f533f48b9 [08:00:11] Author: James D. Forrester [08:00:11] Date: Tue Jun 9 03:59:45 2026 -0400 [08:00:11] [08:00:11] Update git submodules [08:00:11] [08:00:11] * Update WikiLambda from branch 'master' [08:00:11] to 4592e7322f5d8786735107a870acbc46d30b3121 [08:00:11] - tests: Split integration-test base into one class per WikiLambda mode [08:00:11] [08:00:11] The previous WikiLambdaIntegrationTestCase had a single helper [08:00:11] setUpAsRepoMode() that mutated globals (via [08:00:11] RepoHooks::registerExtension) [08:00:11] in a way that couldn't be cleanly un-set once it had run. That left [08:00:11] tests [08:00:11] intending to exercise client-mode or abstract-mode behaviour silently [08:00:11] inheriting all the repo-mode rights / groups / namespace bindings — [08:00:11] contaminating any assertion that depended on those *not* being there. [08:00:11] [08:00:11] Make the base class abstract and helper-only, and introduce four [08:00:11] mode-specific subclasses (mirroring the four wiki-side modes the [08:00:11] extension actually supports): [08:00:11] [08:00:11] WikiLambdaIntegrationTestCase — abstract; helpers [08:00:11] only [08:00:11] ├── WikiLambdaRepoModeIntegrationTestCase — Wikifunctions repo [08:00:11] ├── WikiLambdaClientIntegrationTestCase — Wikifunctions client [08:00:11] ├── WikiLambdaAbstractModeIntegrationTestCase — Abstract Wikipedia [08:00:11] repo [08:00:11] └── WikiLambdaAbstractClientIntegrationTestCase — Abstract Wikipedia [08:00:11] client [08:00:11] (renamed from AbstractClientIntegrationTestCase for consistency) [08:00:11] [08:00:11] Each subclass enables exactly the modes its name implies in setUp(), so [08:00:11] the wiki configuration a test runs in is now visible at the `extends` [08:00:11] line. Migrate all 50+ tests that used to extend the old base to [08:00:11] whichever [08:00:11] subclass matches their subject under test: [08:00:11] [08:00:11] * The bulk go to WikiLambdaRepoModeIntegrationTestCase, dropping their [08:00:11] explicit setUpAsRepoMode() call since the base now does it. [08:00:11] * AbstractContent/* and AWStorage/AWFragment* (plus [08:00:11] CacheAbstractContentFragmentJobTest) go to [08:00:11] WikiLambdaAbstractModeIntegrationTestCase. [08:00:11] * ZObjectFilterIsConnectedConverterTest doesn't need any WikiLambda mode [08:00:11] (pure mocks) so extends MediaWikiIntegrationTestCase directly. [08:00:11] [08:00:11] The mode base classes pair each overrideConfigValue() with a [08:00:11] setMwGlobals() [08:00:11] on the matching $wg* variable. That's because [08:00:11] RepoHooks::registerExtension [08:00:11] reads the raw global rather than going through MainConfig — calling [08:00:11] MediaWikiServices::getInstance() during the bootstrap callback path [08:00:11] trips [08:00:11] the "premature service-container access" deprecation that SettingsTest's [08:00:11] config-generation tooling treats as a hard failure. [08:00:11] [08:00:11] The repo-mode base seeds Z504 in setUp() only when the test has [08:00:11] @group Database; non-DB tests like WikifunctionsLanguageTest and [08:00:11] WikiLambdaRESTHandlerTest still get the registered globals but skip the [08:00:11] editPage call that would otherwise throw a hard LogicException. [08:00:11] [08:00:11] Also: [08:00:11] [08:00:11] * WikiLambdaApiTestCase's repo-mode setup moves from __construct to a [08:00:11] proper setUp(), since service overrides in __construct don't survive [08:00:11] MediaWikiIntegrationTestCase::setUp resetting them before the test [08:00:11] runs. [08:00:11] * WikiLambdaClientIntegrationTestCase's setUpAsClientMode helper is [08:00:11] annotated with an inline FIXME: it currently also enables repo mode, [08:00:11] despite the class name implying a client-only wiki. Untangling that [08:00:11] needs a separate audit of the callers' assumptions, so the leak is [08:00:11] documented here for follow-up. [08:00:11] [08:00:11] Bug: T407066 [08:00:11] Co-Authored-By: Claude Opus 4.7 (1M context) [08:00:11] Change-Id: Ia1bc22b9f1e520aa94da07dd7e27f5d4db4500e3 [08:00:11] [08:00:11] commit c074ad7567ad0ad4d963a0ae73701fce2a4574fa [08:00:11] Author: jenkins-bot [08:00:11] Date: Tue Jun 9 07:53:59 2026 +0000 [08:00:11] [08:00:11] Update git submodules [08:00:11] [08:00:11] * Update Wikibase from branch 'master' [08:00:11] to 5eb1cddb30c272cd99431ef06aea17317b5fc331 [08:00:11] - Merge "Add temporary debug output to addQualifier test" [08:00:11] - Add temporary debug output to addQualifier test [08:00:11] [08:00:11] This test is regularly failing for confusing reasons in CI. Let’s log [08:00:11] the HTML page contents and see if we can figure out why Cypress can’t [08:00:11] find a valid edit link. [08:00:11] [08:00:11] Bug: T418778 [08:00:11] Change-Id: Ia24c147b83860bcb963fa922fac6ce79c7aac48f [08:00:11] [08:00:11] 08:00:11 https://gerrit.wikimedia.org/r/mediawiki/extensions checked out at commit b8ebf767ac41b4dd13d557ddd28ad76f533f48b9 [08:02:24] 08:02:24 Update https://gerrit.wikimedia.org/r/mediawiki/vendor (master branch) in /srv/mediawiki-staging/php-master/vendor [08:02:26] 08:02:26 https://gerrit.wikimedia.org/r/mediawiki/vendor checked out at commit 9bb06da7b936c29761bc1c7634f37a335742be11 [08:02:26] 08:02:26 Update https://gerrit.wikimedia.org/r/mediawiki/skins (master branch) in /srv/mediawiki-staging/php-master/skins [08:02:27] 08:02:27 https://gerrit.wikimedia.org/r/mediawiki/skins checked out at commit 77f78a1e15aa910f4aef8e1f0e768f3974818f27 [08:02:34] 08:02:34 MediaWiki master successfully checked out. [08:02:34] 08:02:34 Finished scap prep auto (duration: 02m 28s) [08:02:34] + /usr/bin/scap sync-world 'wmf-beta-update-all run' [08:02:35] ___ ____ [08:02:35] ⎛ ⎛ ,---- [08:02:35] \ //==--' [08:02:35] _//|,.·//==--' ____________________________ [08:02:35] _OO≣=- ︶ ᴹw ⎞_§ ______ ___\ ___\ ,\__ \/ __ \ [08:02:35] (∞)_, ) ( | ______/__ \/ /__ / /_/ / /_/ / [08:02:35] ¨--¨|| |- ( / ______\____/ \___/ \__^_/ .__/ [08:02:35] ««_/ «_/ jgs/bd808 /_/ [08:02:35] [08:02:35] 08:02:35 Started scap sync-world: wmf-beta-update-all run [08:02:41] 08:02:41 Started cache_git_info [08:03:07] 08:03:07 Finished cache_git_info (duration: 00m 26s) [08:03:07] 08:03:07 Started l10n-update [08:03:17] 08:03:17 Updating ExtensionMessages-master.php [08:03:27] 08:03:27 Updating LocalisationCache for master using 2 thread(s) [08:03:27] 08:03:27 Running rebuildLocalisationCache.php (cdb) [08:03:36] 08:03:36 0 languages rebuilt out of 549 [08:03:36] 08:03:36 Use --force to rebuild the caches which are still fresh. [08:03:41] 08:03:41 Running rebuildLocalisationCache.php (php) [08:03:47] 08:03:47 0 languages rebuilt out of 549 [08:03:47] 08:03:47 Use --force to rebuild the caches which are still fresh. [08:03:51] 08:03:51 Generating JSON versions and md5 files (as www-data) [08:03:59] 08:03:59 Finished l10n-update (duration: 00m 51s) [08:03:59] 08:03:59 Checking for new runtime errors locally [08:04:03] 08:04:03 Started sync-canaries [08:04:03] 08:04:03 sync-canaries: 0% (ok: 0; fail: 0; left: 1) [08:04:09] 08:04:09 sync-canaries: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [08:04:09] 08:04:09 Per-host sync duration: average 6.2s, median 6.2s [08:04:09] 08:04:09 rsync transfer: average 1257729 bytes/host, total 1257729 bytes [08:04:09] 08:04:09 Started scap-cdb-rebuild-canaries [08:04:09] 08:04:09 scap-cdb-rebuild: 0% (ok: 0; fail: 0; left: 1) [08:04:11] 08:04:11 scap-cdb-rebuild: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [08:04:11] 08:04:11 Finished scap-cdb-rebuild-canaries (duration: 00m 01s) [08:04:11] 08:04:11 Started sync-wikiversions-canaries [08:04:11] 08:04:11 sync-wikiversions: 0% (ok: 0; fail: 0; left: 1) [08:04:11] 08:04:11 sync-wikiversions: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [08:04:11] 08:04:11 Finished sync-wikiversions-canaries (duration: 00m 00s) [08:04:11] 08:04:11 Started php-fpm-restarts-canaries [08:04:11] 08:04:11 Running '/usr/local/sbin/restart-php-fpm-all' on 1 host(s) [08:04:11] 08:04:11 php-fpm-restart: 0% (ok: 0; fail: 0; left: 0) [08:04:12] 08:04:12 php-fpm-restart: 100% (in-flight: 0; ok: 1; fail: 0; left: 0) [08:04:12] 08:04:12 Finished php-fpm-restarts-canaries (duration: 00m 00s) [08:04:12] 08:04:12 Finished sync-canaries (duration: 00m 09s) [08:04:12] 08:04:12 Waiting 20 seconds for canary traffic... [08:04:32] 08:04:32 Logstash checker counted 0 error(s) in the last 20 seconds. OK. [08:04:32] 08:04:32 Started sync-apaches [08:04:32] 08:04:32 sync-apaches: 0% (ok: 0; fail: 0; left: 3) [08:04:42] 08:04:42 sync-apaches: 100% (in-flight: 0; ok: 3; fail: 0; left: 0) [08:04:42] 08:04:42 Per-host sync duration: average 6.7s, median 5.4s [08:04:42] 08:04:42 rsync transfer: average 1257729 bytes/host, total 3773187 bytes [08:04:42] 08:04:42 Finished sync-apaches (duration: 00m 09s) [08:04:42] 08:04:42 Waiting 20 seconds for production traffic... [08:05:02] 08:05:02 Logstash checker counted 0 error(s) in the last 20 seconds. OK. [08:05:02] 08:05:02 Started scap-cdb-rebuild-prod [08:05:02] 08:05:02 scap-cdb-rebuild: 0% (ok: 0; fail: 0; left: 4) [08:05:04] 08:05:04 scap-cdb-rebuild: 100% (in-flight: 0; ok: 4; fail: 0; left: 0) [08:05:04] 08:05:04 Finished scap-cdb-rebuild-prod (duration: 00m 02s) [08:05:04] 08:05:04 Started sync-wikiversions-prod [08:05:04] 08:05:04 sync-wikiversions: 0% (ok: 0; fail: 0; left: 4) [08:05:05] 08:05:05 sync-wikiversions: 100% (in-flight: 0; ok: 4; fail: 0; left: 0) [08:05:05] 08:05:05 Finished sync-wikiversions-prod (duration: 00m 00s) [08:05:05] 08:05:05 Started php-fpm-restarts-prod [08:05:05] 08:05:05 Running '/usr/local/sbin/restart-php-fpm-all' on 2 host(s) [08:05:05] 08:05:05 php-fpm-restart: 0% (ok: 0; fail: 0; left: 0) [08:05:06] 08:05:06 php-fpm-restart: 100% (in-flight: 0; ok: 2; fail: 0; left: 0) [08:05:06] 08:05:06 Finished php-fpm-restarts-prod (duration: 00m 01s) [08:05:06] 08:05:06 Running purgeMessageBlobStore.php [08:05:10] 08:05:10 Finished scap sync-world: wmf-beta-update-all run (duration: 02m 35s) [08:05:11] + /usr/local/bin/wmf-beta-update-databases.py [08:05:56] aawiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for aawiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 173 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.3 s. [08:05:56] apiportalwiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for apiportalwiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 190 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.8 s. [08:05:56] arwiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for arwiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 249 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 3.4 s. [08:05:56] bnwiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for bnwiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 236 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 3.5 s. [08:05:56] cawiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for cawiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 236 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 3.6 s. [08:05:56] commonswiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for commonswiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 250 updates that were already applied. [08:05:56] Set the local repo temp zone container to be private. [08:05:56] Purging caches... [08:05:56] Done in 21 s. [08:05:56] crhwiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for crhwiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 218 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 3.8 s. [08:05:56] cswiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for cswiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 221 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 3.6 s. [08:05:56] dewiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for dewiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 244 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 13 s. [08:05:56] dewiktionary [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for dewiktionary [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 204 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.9 s. [08:05:56] enwiki [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwiki [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 255 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 13 s. [08:05:56] enwikibooks [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikibooks [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 203 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.4 s. [08:05:56] enwikinews [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikinews [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Skipped 182 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.2 s. [08:05:56] enwikiquote [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikiquote [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 192 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.3 s. [08:05:56] enwikisource [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikisource [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 195 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.4 s. [08:05:56] enwikiversity [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikiversity [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Skipped 192 updates that were already applied. [08:05:56] Purging caches... [08:05:56] Done in 2.4 s. [08:05:56] enwikivoyage [08:05:56] MediaWiki 1.47.0-alpha Updater [08:05:56] [08:05:56] Your composer.lock file is up to date with current dependencies! [08:05:56] Going to run database updates for enwikivoyage [08:05:56] Depending on the size of your database this may take a while! [08:05:56] Modifying gb_id field of table globalblocks...done. [08:05:56] Modifying gb_address field of table globalblocks...done. [08:05:56] Modifying cxl_end_time field of table cx_lists...done. [08:05:56] Modifying cxc_timestamp field of table cx_corpora...done. [08:05:56] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:05:56] Skipped 216 updates that were already applied. [08:05:56] Purging caches... [08:06:41] Done in 3.1 s. [08:06:41] enwiktionary [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for enwiktionary [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 200 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 2.8 s. [08:06:41] eowiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for eowiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 244 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.4 s. [08:06:41] eswiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for eswiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 223 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.3 s. [08:06:41] eswikibooks [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for eswikibooks [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 196 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 2.7 s. [08:06:41] fawiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for fawiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 249 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.5 s. [08:06:41] foundationwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for foundationwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 218 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 2.9 s. [08:06:41] frwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for frwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 221 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 14 s. [08:06:41] frwiktionary [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for frwiktionary [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 225 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.0 s. [08:06:41] hewiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for hewiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 238 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 13 s. [08:06:41] hewiktionary [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for hewiktionary [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 196 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 2.7 s. [08:06:41] hiwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for hiwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 232 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.8 s. [08:06:41] incubatorwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for incubatorwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 219 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 2.7 s. [08:06:41] jawiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for jawiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 220 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 13 s. [08:06:41] kowiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for kowiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 223 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.1 s. [08:06:41] loginwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for loginwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 135 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 1.5 s. [08:06:41] metawiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for metawiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Skipped 222 updates that were already applied. [08:06:41] Purging caches... [08:06:41] Done in 3.0 s. [08:06:41] nlwiki [08:06:41] MediaWiki 1.47.0-alpha Updater [08:06:41] [08:06:41] Your composer.lock file is up to date with current dependencies! [08:06:41] Going to run database updates for nlwiki [08:06:41] Depending on the size of your database this may take a while! [08:06:41] Modifying gb_id field of table globalblocks...done. [08:06:41] Modifying gb_address field of table globalblocks...done. [08:06:41] Modifying cxl_end_time field of table cx_lists...done. [08:06:41] Modifying cxc_timestamp field of table cx_corpora...done. [08:06:41] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:06:41] Skipped 223 updates that were already applied. [08:06:41] Purging caches... [08:07:24] Done in 3.4 s. [08:07:24] plwikivoyage [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for plwikivoyage [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 214 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.4 s. [08:07:24] ruwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for ruwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 249 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 14 s. [08:07:24] simplewiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for simplewiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 221 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.4 s. [08:07:24] sqwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for sqwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 234 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.5 s. [08:07:24] srwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for srwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 223 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.8 s. [08:07:24] svwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for svwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 238 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.5 s. [08:07:24] test2wiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for test2wiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Skipped 235 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 2.8 s. [08:07:24] testwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for testwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 276 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 5.5 s. [08:07:24] ukwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for ukwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 234 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 13 s. [08:07:24] viwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for viwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 220 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.4 s. [08:07:24] votewiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for votewiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Skipped 114 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 1.2 s. [08:07:24] wikidatawiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for wikidatawiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Skipped 260 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 3.1 s. [08:07:24] zhwiki [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for zhwiki [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 244 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 14 s. [08:07:24] zhwikivoyage [08:07:24] MediaWiki 1.47.0-alpha Updater [08:07:24] [08:07:24] Your composer.lock file is up to date with current dependencies! [08:07:24] Going to run database updates for zhwikivoyage [08:07:24] Depending on the size of your database this may take a while! [08:07:24] Modifying gb_id field of table globalblocks...done. [08:07:24] Modifying gb_address field of table globalblocks...done. [08:07:24] Modifying cxl_end_time field of table cx_lists...done. [08:07:24] Modifying cxc_timestamp field of table cx_corpora...done. [08:07:24] Modifying translation_last_updated_timestamp field of table cx_translations...done. [08:07:24] Skipped 216 updates that were already applied. [08:07:24] Purging caches... [08:07:24] Done in 4.0 s.