[10:45:16] Anyone familiar with getting `fetch-pack: unexpected disconnect while reading sideband packet` while fetching from gerrit? [10:50:10] All right, I just needed to hard disable my MediaWiki with an exit; in LocalSettings.php [10:50:48] svip: not familiar with that error specifically, but i know that Gerrit has been put behind the CDN/some additional layers in the last few months, which (to my knowledge) may have led to some additional errors - e.g. in CI there was T421827 [10:50:48] T421827: gerrit: Adapt timeouts to avoid 502 errors in CI jobs - https://phabricator.wikimedia.org/T421827 [10:51:21] A_smart_kitten: In this case, it might have been because my server was overloaded (or both). [10:51:34] ah right [15:55:02] I have installed 1.43.8, but when I access the Version-page, I get this PHP warning: Undefined array key "packages" in /var/www/theinfosphere/includes/libs/composer/ComposerInstalled.php on line 30 [15:58:53] svip: at a quick search, T407703 seems to have been reporting a similar issue; from what I can see from skim-reading that task, it seems like the issue for that person may have had to do with an (outdated?) extension [15:59:07] Possibly. [15:59:11] oh right this channel doesn't autocomplete phab links - https://phabricator.wikimedia.org/T407703 [15:59:12] T407703: Undefined array key packages and foreach() argument must be of type array|object, null - https://phabricator.wikimedia.org/T407703 [15:59:32] (oh wait it does? i was just too impatient) [16:14:17] So maybe the solution is to make sure all my extensions are properly upgraded? [16:22:46] that would probably be my guess from having skim-read the conversation in that task, yeah. [16:32:47] This little script fixed it: `ls */composer.json | cut -d'/' -f1 | while read -r dir; do pushd $dir; composer update --no-dev; popd; done`