[00:14:04] <^demon> #til about https://pulpproject.org/ [00:45:11] That could be useful [00:45:21] We certainly have some issues with rate limitings... [02:13:53] hi releng folks! [02:14:04] I've got a gitlab question [02:14:45] So the main branch on my 'fork' of releng/dev-images has gotten skewed from upstream/main [02:15:12] nobody's forked from mine, so I'd just like to reset it to match releng/dev-images main [02:15:57] but when I try to push --force to my own fork it tells me remote: GitLab: You are not allowed to force push code to a protected branch on this project. [02:16:32] is there any way to just reset that ref, or to set main as a non-protected branch (for my own fork)? [02:16:44] Or do I need to just delete my repo and re-fork? [07:55:41] (03PS1) 10Giuseppe Lavagetto: make-container-image: switch to php7.4 [tools/release] - 10https://gerrit.wikimedia.org/r/829113 [07:55:43] (03PS1) 10Giuseppe Lavagetto: Add php7.4-ldap to the debug image [tools/release] - 10https://gerrit.wikimedia.org/r/829114 [07:55:45] (03PS1) 10Giuseppe Lavagetto: make-container-image: add push of the debug image to build-all [tools/release] - 10https://gerrit.wikimedia.org/r/829115 [08:35:16] hashar: good morning! we're in a bit of a funny situation. wikibase CI is blocked because of resource loader change that broke a test in WikibaseLexeme, which happened yesterday. we have a patch that fixes it but now can't merge it because WikibaseLexeme's gate and submit fails on a wikibase test related to serialization in the php 7.4 job. this is the patch we're trying to merge: [08:35:16] https://gerrit.wikimedia.org/r/c/mediawiki/extensions/WikibaseLexeme/+/828759 [08:35:52] jakob_WMDE: ah so two different issues and each of the changes are blocked by each others not merging isn't it? [08:36:04] yup exactly [08:36:41] for WMF we have patched php 7.4 for serialization back compatibility [08:36:54] we're also a bit surprised why the 7.4 job in lexeme is failure only there, and not for wikibase itself [08:37:03] I can imagine the test could be written to assert different serializations based on the php version being running [08:37:43] I am guessing the easiest is to force merge: remove the jenkins-bot verified:-1, vote verified+2 and then submit the change directly [08:37:59] could it be that lexeme isn't running the patched php 7.4? the same test is passing in wikibase ci [08:38:10] ah possibly [08:38:42] docker-registry.wikimedia.org/releng/quibble-buster-php74:1.4.6 [08:38:54] 07:43:29 INFO:quibble.commands:php --version: PHP 7.4.30 (cli) (built: Aug 31 2022 09:45:57) ( NTS ) [08:39:02] that is the one we build and it has the patch [08:39:17] then the patch is to let php 7.4 to unserialize data that got serialized with php 7.2 [08:39:21] and this job only runs php 7.4 [08:40:08] so I am guessing the test Wikibase\DataModel\Tests\ReferenceListTest::testSerializationStability is hardcoding a serialized string [08:41:18] yup, it is [08:42:50] version_compare( phpversion(), '7.4', '>=' ) [08:42:50] :) [08:43:04] ugh :D [08:43:47] so Wikibase test lib/packages/wikibase/data-model/tests/unit/ReferenceListTest.php fails on that WikibaseLexeme change [08:44:00] yeah [08:44:05] and I am guessing it would fail when proposing the RL fix on Wikibase is that correct? [08:44:53] wikibase is failing because of the RL in lexeme. they both depend on each other [08:45:14] I am trying to understand why that test fails since it apparently handles php 7.2 vs 7.4 [08:45:15] I guess we should force merge the lexeme patch then and deal with the serialization issue in wikibase after [08:46:41] or potentially mark the Wikibase test skipped [08:46:50] have WikibaseLexeme to @depends on that change [08:46:54] and that should pass [08:47:07] cause I imagine anything running the Wikibase tests end up broken ? [08:48:24] yes, we can make it pass with the depends-on, but we still wouldn't be able to get gate and submit green, because they depend on each other. wikibase runs lexeme tests, lexeme runs wikibase tests [08:48:38] but yeah, seeing it green before force merging is probably still a good idea [08:49:58] or I misunderstood what our patched php7.4 is doing [08:51:17] cause even if our image docker-registry.wikimedia.org/releng/quibble-buster-php74:1.4.6 has php 7.4, the test serialized with php 7.2 format as I understand it [08:52:43] so from my understanding, whoever wrote that test was aware of serialisation differences between 7.2 and 7.4 - so the test accounts for them. However, the patched 7.4 version now does serialisation the same way 7.2 did, and causes the test to fail? Possibly? [08:52:50] yeah I think that is what our patched php 7.4 is doing [08:53:00] it serializes to the old format [08:53:14] but the test expects the new 7.4 format and then fails [08:53:17] while the Wikibase test expects the php 7.4 ne wformat [08:53:20] yeah [08:53:26] it is 100% our fault [08:53:49] by our, I mean infra people patching up php 7.4 to behave like a previous version [08:54:01] so for this specific test I think the easist is to skip it [08:54:40] with a reference to the patch we made which would be https://phabricator.wikimedia.org/T316601#8201209 [08:55:03] and we can add a task to remember to enable the test against after we have completed the php 7.2 migration and move back to the original php 7.4 [08:55:44] by skipping the test that will resume CI for Wikibase [08:55:52] and will in turn unblock the unrelated WikibaseLexeme change [08:57:09] another alternative is when the test has phpversion 7.4 >=, do a quick serialization to detect whether it is running under our patched version (gotta serialize a short code which results in a different serialization between 7.2 and 7.4) [08:57:37] if 7.4 yields a result identical to 7.2 then it is running with our patch and thus the assertion should be made against the 7.2 expected output [08:57:40] else expect the 7.4 one [08:58:10] run some code first, to be able to test it properly ;-) [08:58:28] :see_no_evil: [08:58:41] thanks hashar, we'll disable the test for now and then unblock the lexeme fix with that :) [08:58:56] yeah I think that the easiest for now [08:58:58] 10Release-Engineering-Team-TODO (2020-07-01 to 2020-09-30 (Q1)), 10WMF-General-or-Unknown, 10PHP 7.4 support: Make Wikimedia Production MediaWiki compatible with PHP 7.4 - https://phabricator.wikimedia.org/T247658 (10kostajh) [08:59:30] and you can file a task to restore the test after we have completed the migration (that is https://phabricator.wikimedia.org/T271736 ) and after we have moved back to the unpatched php 7.4 (no task yet for that) [08:59:39] I am happy to be subscribed to the new task ;) [08:59:53] nice catch jakob_WMDE and Silvan_WMDE ! [09:00:08] and I apologize for the breakage [09:00:35] Oh, I reopened T247658 without seeing the converation here [09:00:35] T247658: Make Wikimedia Production MediaWiki compatible with PHP 7.4 - https://phabricator.wikimedia.org/T247658 [09:00:41] *conversation [09:01:31] I can summarize the above on that task [09:02:36] ok, thanks! [09:03:01] I am summarizing [09:09:54] jakob_WMDE: Silvan_WMDE: kostajh: summarized at https://phabricator.wikimedia.org/T243590#8207885 [09:10:03] let me know if you need a review / +1 / +2 [09:10:41] I am too lazy to find a small test case to detect the serialization difference and aptch the test to detect our patched php 7.4 :\ [09:10:56] sounds good, thank you [09:11:12] and thanks so much for reaching out about the ci test failure! [09:15:34] thanks for the summary, looks good! [10:35:43] (03CR) 10DCausse: "nice!" [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/814725 (https://phabricator.wikimedia.org/T304947) (owner: 10Hashar) [11:34:40] (03CR) 10Jakob: "This change is ready for review." [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [11:41:18] (03CR) 10Silvan Heintze: [C: 03+1] "Yes, this would be nice." [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [11:48:06] thcipriani: Hey! if you're around, could you have a look at T316090 and approve access to deployments for our newest team member? Please and thank you! [11:48:07] T316090: Production Shell access for Peter - https://phabricator.wikimedia.org/T316090 [12:47:23] (03CR) 10DCausse: "some unit tests would be nice :)" [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/814807 (owner: 10Hashar) [13:07:04] (03CR) 10DCausse: "lgtm," [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/816115 (owner: 10Hashar) [13:07:44] 10Continuous-Integration-Infrastructure, 10Jenkins: Something seems to be wrong with jenkins-bot - https://phabricator.wikimedia.org/T316934 (10alex-mashin) [13:09:35] (03CR) 10DCausse: [C: 03+1] build: manage dependencies with rules_jvm_external [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/816172 (owner: 10Hashar) [13:30:34] 10GitLab (Infrastructure), 10Data-Persistence-Backup, 10serviceops, 10serviceops-collab, 10User-brennen: Setup partial backups for GitLab - https://phabricator.wikimedia.org/T316935 (10Jelto) [13:35:42] 10GitLab (Infrastructure), 10Data-Persistence-Backup, 10serviceops, 10serviceops-collab, 10User-brennen: Setup partial backups for GitLab - https://phabricator.wikimedia.org/T316935 (10Jelto) p:05Triage→03Medium [13:40:38] !log " ENOENT: no such file or directory, lstat " failing quibble jobs on integration-agent-docker-1024 [13:40:39] Logged the message at https://wikitech.wikimedia.org/wiki/Release_Engineering/SAL [13:40:45] https://integration.wikimedia.org/ci/job/mediawiki-quibble-selenium-vendor-mysql-php72-docker/45317/ [14:07:15] (03CR) 10Hashar: "I have to:" [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/814725 (https://phabricator.wikimedia.org/T304947) (owner: 10Hashar) [14:07:31] (03PS3) 10Hashar: Json schema from Gerrit Java event classes [software/gerrit/plugins/events-wikimedia] - 10https://gerrit.wikimedia.org/r/814725 (https://phabricator.wikimedia.org/T304947) [14:15:19] 10Continuous-Integration-Infrastructure, 10Jenkins, 10Release-Engineering-Team, 10Upstream: Jobs started failing on https://releases-jenkins.wikimedia.org on 2022-08-21 - https://phabricator.wikimedia.org/T315897 (10hashar) The pull request is pending confirmation by others the issue is indeed fixed ( http... [14:19:05] (03CR) 10Hashar: Always run Wikibase composer apitests in test step (031 comment) [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:19:14] (03PS2) 10Hashar: Always run Wikibase composer apitests in test step [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:19:27] (03CR) 10Hashar: [C: 03+2] Always run Wikibase composer apitests in test step [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:23:55] (03Merged) 10jenkins-bot: Always run Wikibase composer apitests in test step [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:25:16] (03CR) 10Jaime Nuche: [C: 03+2] "Works in traindev" [tools/release] - 10https://gerrit.wikimedia.org/r/829113 (owner: 10Giuseppe Lavagetto) [14:26:03] (03Merged) 10jenkins-bot: make-container-image: switch to php7.4 [tools/release] - 10https://gerrit.wikimedia.org/r/829113 (owner: 10Giuseppe Lavagetto) [14:34:30] (03CR) 10Jakob: "Thanks!" [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:53:01] (03CR) 10Hashar: [C: 03+2] "deployed (sorry for the delay)" [integration/config] - 10https://gerrit.wikimedia.org/r/829171 (owner: 10Jakob) [14:54:55] (03PS2) 10Jaime Nuche: make-container-image: add push of the debug image to build-all [tools/release] - 10https://gerrit.wikimedia.org/r/829115 (owner: 10Giuseppe Lavagetto) [14:57:08] (03CR) 10Jaime Nuche: [C: 04-1] "Fixed the extract-image-tag script so it works in the traindev environment." [tools/release] - 10https://gerrit.wikimedia.org/r/829115 (owner: 10Giuseppe Lavagetto) [15:12:21] (03CR) 10Jaime Nuche: Replace Lock with TimeoutLock (031 comment) [tools/scap] - 10https://gerrit.wikimedia.org/r/828075 (https://phabricator.wikimedia.org/T315531) (owner: 10Jeena Huneidi) [15:15:29] (03PS1) 10Ahmon Dancy: auto-stage: Always use aawiki for l10n generation [tools/release] - 10https://gerrit.wikimedia.org/r/829211 (https://phabricator.wikimedia.org/T316714) [15:17:42] (03PS2) 10Ahmon Dancy: auto-stage: Always use aawiki for l10n generation [tools/release] - 10https://gerrit.wikimedia.org/r/829211 (https://phabricator.wikimedia.org/T316714) [15:22:58] (03PS3) 10Ahmon Dancy: auto-stage: Always use aawiki for l10n generation [tools/release] - 10https://gerrit.wikimedia.org/r/829211 (https://phabricator.wikimedia.org/T316714) [15:34:47] (03PS1) 10Ahmon Dancy: Revert "make-container-image: switch to php7.4" [tools/release] - 10https://gerrit.wikimedia.org/r/829140 [15:45:12] 10Beta-Cluster-Infrastructure, 10Release-Engineering-Team: Request access to deployment-prep - https://phabricator.wikimedia.org/T316943 (10vaughnwalters) [15:46:24] 10Beta-Cluster-Infrastructure, 10Release-Engineering-Team: Request access to deployment-prep - https://phabricator.wikimedia.org/T316943 (10dancy) [15:49:20] (03CR) 10Ahmon Dancy: "This commit was merged prematurely. It causes the following error during image builds:" [tools/release] - 10https://gerrit.wikimedia.org/r/829113 (owner: 10Giuseppe Lavagetto) [15:51:02] (03CR) 10Jaime Nuche: [C: 03+2] make-container-image: switch to php7.4 (031 comment) [tools/release] - 10https://gerrit.wikimedia.org/r/829113 (owner: 10Giuseppe Lavagetto) [15:52:01] (03CR) 10Jaime Nuche: [C: 03+2] Revert "make-container-image: switch to php7.4" [tools/release] - 10https://gerrit.wikimedia.org/r/829140 (owner: 10Ahmon Dancy) [15:52:45] (03CR) 10Ahmon Dancy: "Confirmed this revert gets container image builds back in order:" [tools/release] - 10https://gerrit.wikimedia.org/r/829140 (owner: 10Ahmon Dancy) [15:53:15] (03Merged) 10jenkins-bot: Revert "make-container-image: switch to php7.4" [tools/release] - 10https://gerrit.wikimedia.org/r/829140 (owner: 10Ahmon Dancy) [15:53:45] (03CR) 10Jaime Nuche: [C: 04-1] make-container-image: add push of the debug image to build-all (031 comment) [tools/release] - 10https://gerrit.wikimedia.org/r/829115 (owner: 10Giuseppe Lavagetto) [15:58:09] (03CR) 10Ahmon Dancy: [C: 03+2] "Tested via https://releases-jenkins.wikimedia.org/view/incremental%20image%20build/job/build-mw-container-image/3338/console" [tools/release] - 10https://gerrit.wikimedia.org/r/829211 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [15:59:06] (03Merged) 10jenkins-bot: auto-stage: Always use aawiki for l10n generation [tools/release] - 10https://gerrit.wikimedia.org/r/829211 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [15:59:50] !log added vwalters as member of the deployment-prep project T316943 [15:59:51] Logged the message at https://wikitech.wikimedia.org/wiki/Release_Engineering/SAL [15:59:52] T316943: Request access to deployment-prep - https://phabricator.wikimedia.org/T316943 [16:00:08] 10Beta-Cluster-Infrastructure, 10Release-Engineering-Team: Request access to deployment-prep - https://phabricator.wikimedia.org/T316943 (10Zabe) 05Open→03Resolved a:03Zabe [16:08:13] (03CR) 10Hashar: [C: 03+2] Add dependency for BlueSpiceCountThings [integration/config] - 10https://gerrit.wikimedia.org/r/829027 (owner: 10Mglaser) [16:10:32] (03Merged) 10jenkins-bot: Add dependency for BlueSpiceCountThings [integration/config] - 10https://gerrit.wikimedia.org/r/829027 (owner: 10Mglaser) [16:11:35] (03CR) 10Jaime Nuche: Replace Lock with TimeoutLock (031 comment) [tools/scap] - 10https://gerrit.wikimedia.org/r/828075 (https://phabricator.wikimedia.org/T315531) (owner: 10Jeena Huneidi) [16:13:55] (03CR) 10Hashar: [C: 03+2] "deployed" [integration/config] - 10https://gerrit.wikimedia.org/r/829027 (owner: 10Mglaser) [16:31:42] (03PS1) 10Ahmon Dancy: Pass --wiki-aawiki and --force-version to l10n related maintenance scripts [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) [16:34:43] (03PS2) 10Ahmon Dancy: Pass --wiki-aawiki and --force-version to l10n related maintenance scripts [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) [16:35:31] (03Abandoned) 10Ahmon Dancy: scap backport: Pass --skip-l10n-update to sync-world [tools/scap] - 10https://gerrit.wikimedia.org/r/828084 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [17:05:35] (03CR) 10Dduvall: [C: 03+1] "Implementation looks good! I've requested that a bit more background be present in the commit message." [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [17:17:50] (03PS10) 10Ahmon Dancy: k8s: deploy to debug namepsace during testservers deployment [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) [17:19:21] (03CR) 10Ahmon Dancy: "Extra patchset pushed unintentionally." [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) (owner: 10Ahmon Dancy) [17:19:34] (03PS3) 10Ahmon Dancy: Pass --wiki=aawiki and --force-version to l10n related maintenance scripts [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) [17:19:53] (03CR) 10Ahmon Dancy: Pass --wiki=aawiki and --force-version to l10n related maintenance scripts (032 comments) [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [17:27:50] (03CR) 10Dduvall: [C: 03+2] Pass --wiki=aawiki and --force-version to l10n related maintenance scripts [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [17:31:58] (03Merged) 10jenkins-bot: Pass --wiki=aawiki and --force-version to l10n related maintenance scripts [tools/scap] - 10https://gerrit.wikimedia.org/r/829228 (https://phabricator.wikimedia.org/T316714) (owner: 10Ahmon Dancy) [17:33:26] (03PS11) 10Jaime Nuche: k8s: deploy to debug namepsace during testservers deployment [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) (owner: 10Ahmon Dancy) [17:34:40] (03CR) 10Jaime Nuche: k8s: deploy to debug namepsace during testservers deployment (031 comment) [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) (owner: 10Ahmon Dancy) [17:45:49] (03PS1) 10Jaime Nuche: make-container-image: fix script used to extract image tag [tools/release] - 10https://gerrit.wikimedia.org/r/829234 [17:49:28] (03CR) 10Jaime Nuche: [C: 03+2] k8s: deploy to debug namepsace during testservers deployment [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) (owner: 10Ahmon Dancy) [17:50:15] (03CR) 10Jaime Nuche: "Verified in traindev and also https://releases-jenkins.wikimedia.org/job/build-mw-container-image/3340/" [tools/release] - 10https://gerrit.wikimedia.org/r/829234 (owner: 10Jaime Nuche) [17:51:52] (03PS3) 10Jaime Nuche: make-container-image: add push of the debug image to build-all [tools/release] - 10https://gerrit.wikimedia.org/r/829115 (owner: 10Giuseppe Lavagetto) [17:52:12] (03CR) 10Jaime Nuche: "Moved the script fix to https://gerrit.wikimedia.org/r/c/mediawiki/tools/release/+/829234" [tools/release] - 10https://gerrit.wikimedia.org/r/829115 (owner: 10Giuseppe Lavagetto) [17:53:36] (03Merged) 10jenkins-bot: k8s: deploy to debug namepsace during testservers deployment [tools/scap] - 10https://gerrit.wikimedia.org/r/789659 (https://phabricator.wikimedia.org/T299648) (owner: 10Ahmon Dancy) [18:02:54] (03CR) 10Ahmon Dancy: [V: 03+1 C: 03+2] "Tested before/after in train-dev. Verified broken and fixed." [tools/release] - 10https://gerrit.wikimedia.org/r/829234 (owner: 10Jaime Nuche) [18:03:39] (03Merged) 10jenkins-bot: make-container-image: fix script used to extract image tag [tools/release] - 10https://gerrit.wikimedia.org/r/829234 (owner: 10Jaime Nuche) [18:19:42] (03PS6) 10Jeena Huneidi: Replace Lock with TimeoutLock [tools/scap] - 10https://gerrit.wikimedia.org/r/828075 (https://phabricator.wikimedia.org/T315531) [18:20:12] (03CR) 10Jeena Huneidi: Replace Lock with TimeoutLock (031 comment) [tools/scap] - 10https://gerrit.wikimedia.org/r/828075 (https://phabricator.wikimedia.org/T315531) (owner: 10Jeena Huneidi) [18:20:55] (03CR) 10Jeena Huneidi: Replace Lock with TimeoutLock (031 comment) [tools/scap] - 10https://gerrit.wikimedia.org/r/828075 (https://phabricator.wikimedia.org/T315531) (owner: 10Jeena Huneidi) [18:52:05] 10Gerrit, 10wikitech.wikimedia.org, 10LDAP: Rename LDAP CN to 'Aishik Rehman' - https://phabricator.wikimedia.org/T316955 (10Aishik_Rehman) [19:01:43] 10Release-Engineering-Team (Bonus Level 🕹️), 10MW-on-K8s, 10serviceops, 10Patch-For-Review: Make scap deploy to kubernetes together with the legacy systems - https://phabricator.wikimedia.org/T299648 (10dancy) I ran this successfully today: `~dancy/devel-scap sync-world -Dbuild_mw_container_image:True -Dde... [19:04:51] 10Gerrit, 10wikitech.wikimedia.org, 10LDAP: Rename LDAP CN to 'Aishik Rehman' - https://phabricator.wikimedia.org/T316955 (10taavi) 05Open→03Declined Renaming LDAP accounts is unfortunately not currently technically possible. [19:24:19] 10Release-Engineering-Team (Doing), 10MW-on-K8s, 10Release Pipeline, 10Patch-For-Review, 10User-brennen: Design m8s deployment workflows and tooling - https://phabricator.wikimedia.org/T279322 (10dancy) [19:24:23] 10Release-Engineering-Team (Deployment Autopilot 🛩️), 10MW-on-K8s, 10Release Pipeline, 10User-brennen: scap backport --revert command - https://phabricator.wikimedia.org/T287046 (10dancy) 05Resolved→03Open Feedback from @bd808 about `scap backport --revert`: ` Bryan Davis thcipriani: that Trai... [19:31:02] 10Gerrit, 10wikitech.wikimedia.org, 10LDAP: Rename LDAP CN to 'Aishik Rehman' - https://phabricator.wikimedia.org/T316955 (10Aishik_Rehman) @taavi Was it possible before? Because I saw it happen [[https://phabricator.wikimedia.org/T282631|here]]. [20:14:31] 10Release-Engineering-Team (Deployment Autopilot 🛩️), 10MW-on-K8s, 10Release Pipeline, 10User-brennen: scap backport --revert command - https://phabricator.wikimedia.org/T287046 (10bd808) >>! In T287046#8209169, @dancy wrote: > Feedback from @bd808 about `scap backport --revert`: > ` > Bryan Davis... [21:09:41] 10Release-Engineering-Team (Bonus Level 🕹️), 10Patch-For-Review, 10Release, 10Train Deployments: 1.39.0-wmf.27 deployment blockers - https://phabricator.wikimedia.org/T314188 (10dduvall) 05Open→03Resolved [22:53:08] (03PS1) 10Jeena Huneidi: Scap backport --revert: improve commit message [tools/scap] - 10https://gerrit.wikimedia.org/r/829249 (https://phabricator.wikimedia.org/T287046)