This bug was fixed in the package apport - 2.30.0-0ubuntu1 --------------- apport (2.30.0-0ubuntu1) oracular; urgency=medium
[ Benjamin Drung ] * New upstream release: - whoopsie-upload-all: exit with 0 if whoopsie is disabled (LP: #2069360) - launchpad: don't systematically order retrace on private reports (LP: #2068933) - recent-syslog: read stdout after process completion (LP: #2073935) - Fix apport-retrace system tests on non-amd64 (LP: #2069815) - fix race condition in wait_for_gdb_sleeping_child_process (LP: #2073933) - fix flaky test_crash_system_slice (LP: #2076186) * Depend on gdb-multiarch and python3-psutil for system tests [ Chris Peterson ] * subiquity: handle missing log for version inspect (LP: #2067775) [ Sebastien Bacher ] * Fix some issues in the hook for ubuntu-desktop-bootstrap (LP: #2072751) -- Benjamin Drung <bdr...@ubuntu.com> Fri, 09 Aug 2024 16:57:32 +0200 ** Changed in: apport (Ubuntu) Status: In Progress => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to apport in Ubuntu. https://bugs.launchpad.net/bugs/2068933 Title: all reports with LaunchpadPrivate in them are tagged need-$arch- retrace Status in Apport: Fix Released Status in apport package in Ubuntu: Fix Released Bug description: I was recently reviewing the crash reports which the Launchpad retracers handle and was surprised to see a bunch of ubuntu-advantage- tools reports that retracing was tried for even though they had a ProblemType of Bug. Looking at the ubuntu-advantage-tools apport package hook we can see that all the LaunchpadPrivate is set to 1, then looking at `apport/crashdb_impl/launchpad.py` there is: 1083 if "DistroRelease" in report: 1084 if a and ( 1085 "VmCore" in report 1086 or "CoreDump" in report 1087 or "LaunchpadPrivate" in report 1088 ): 1089 hdr["Private"] = "yes" 1090 hdr["Subscribers"] = report.get( 1091 "LaunchpadSubscribe", 1092 self.options.get("initial_subscriber", "apport"), 1093 ) 1094 hdr["Tags"] += f" need-{a}-retrace" Adding need-$arch-retrace is incorrect if the ProblemType is Bug. Here are some example bugs: https://bugs.launchpad.net/ubuntu/+source/ubuntu-advantage-tools/+bug/2067076 https://bugs.launchpad.net/ubuntu/+source/ubuntu-advantage-tools/+bug/2066231 To manage notifications about this bug go to: https://bugs.launchpad.net/apport/+bug/2068933/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp