ubuntu-release-upgrader apport_crash code should filter out dpkg returning 1
Bug #1506971 reported by
Brian Murray
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
ubuntu-release-upgrader (Ubuntu) |
Triaged
|
High
|
Unassigned | ||
Eoan |
Won't Fix
|
High
|
Unassigned |
Bug Description
If we look at the following problem in the Ubuntu Error Tracker we can see hundreds of issues with the following duplicate signature - "SystemError ( E) Sub-process /usr/bin/dpkg returned an error code (1)".
https:/
If we look at any specific instance of that problem (https:/
Changed in ubuntu-release-upgrader (Ubuntu): | |
status: | New → Triaged |
importance: | Undecided → Medium |
summary: |
- ubuntu-release-upgrader bugs regarding dpkg crashes lack useful - information + ubuntu-release-upgrader apport_crash code should filter out dpkg + returning 1 |
Changed in ubuntu-release-upgrader (Ubuntu): | |
importance: | Medium → High |
tags: | added: id-5cdc4ae6515cc742ded2faa2 |
tags: | removed: rls-x-incoming |
tags: | added: fr-278 |
To post a comment you must log in.
Looking at the ubuntu- release- upgrader package hook there is the following code:
48 if problem_type == 'Crash': 'ubuntu- release- upgrader- \w+') get("Traceback" , None) sub('ubuntu- release- upgrader- tmpdir' , line) "DuplicateSigna ture"] = dupe_sig
49 tmpdir = re.compile(
50 tb = report.
51 if tb:
52 dupe_sig = ''
53 for line in tb.splitlines():
54 scrub_line = tmpdir.
55 dupe_sig += scrub_line + '\n'
56 report[
There is nothing abnormal there, scrubbing is just to replace the tmp path in which the ubuntu- release- upgrader ones with one that is generic enough so that upgrades from different systems will have not a unique path in the traceback.