Activity log for bug #1512902

Date Who What changed Old value New value Message
2015-11-03 23:32:51 Brian Murray bug added bug
2015-11-03 23:33:11 Brian Murray tags xenial
2015-11-03 23:33:36 Brian Murray apport (Ubuntu): status New In Progress
2015-11-03 23:33:42 Brian Murray apport (Ubuntu): importance Undecided High
2015-11-03 23:33:44 Brian Murray apport (Ubuntu): assignee Brian Murray (brian-murray)
2015-11-03 23:54:16 Launchpad Janitor branch linked lp:~ubuntu-core-dev/ubuntu/xenial/apport/ubuntu
2015-11-04 15:34:06 Launchpad Janitor apport (Ubuntu): status In Progress Fix Released
2015-11-04 16:17:47 Brian Murray nominated for series Ubuntu Wily
2015-11-04 16:17:47 Brian Murray bug task added apport (Ubuntu Wily)
2015-11-04 16:18:00 Brian Murray apport (Ubuntu Wily): status New Triaged
2015-11-04 16:18:03 Brian Murray apport (Ubuntu Wily): importance Undecided High
2015-11-04 16:18:20 Brian Murray description apport will set an an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting infromation. Subsequently, there is no "_MarkForUpload" information in the report so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker. apport will set an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting infromation. Subsequently, there is no "_MarkForUpload" information in the report so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker.
2015-11-04 16:19:50 Brian Murray description apport will set an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting infromation. Subsequently, there is no "_MarkForUpload" information in the report so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker. apport will set an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting information. Subsequently, there is "_MarkForUpload" is left as True (the default) so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker.
2015-11-04 17:48:37 Brian Murray attachment added _bin_sleep.1000.crash https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1512902/+attachment/4512887/+files/_bin_sleep.1000.crash
2015-11-04 17:49:10 Brian Murray description apport will set an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting information. Subsequently, there is "_MarkForUpload" is left as True (the default) so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker. SRU information appears in comment #3. apport will set an UnreportableReason in the following situations for crash reports where information collection fails or for packages that do not exist. From apport/ui.py: 1036 try: 1037 icthread.exc_raise() 1038 except (IOError, EOFError, zlib.error) as e: 1039 # can happen with broken core dumps 1040 self.report['UnreportableReason'] = '%s\n\n%s' % ( 1041 _('This problem report is damaged and cannot be processed.'), 1042 repr(e)) 1043 except ValueError: # package does not exist 1044 self.report['UnreportableReason'] = _('The report belongs to a package that is not installed.') 1045 except Exception as e: 1046 apport.error(repr(e)) 1047 self.report['UnreportableReason'] = _('An error occurred while attempting to ' 1048 'process this problem report:') + '\n\n' + str(e) Because an UnreportableReason exists in the report, apport will stop collecting information. Subsequently, there is "_MarkForUpload" is left as True (the default) so apport calls mark_report_upload which creates a .upload file such that the report which is incomplete or corrupt is then uploaded to the Error Tracker. In these cases the "_MarkForUpload" key should be set to "False" thereby preventing uploads to the Error Tracker.
2015-11-04 18:07:21 Launchpad Janitor branch linked lp:~ubuntu-core-dev/ubuntu/wily/apport/ubuntu
2015-11-04 18:13:54 Brian Murray apport (Ubuntu Wily): assignee Brian Murray (brian-murray)
2015-11-04 18:13:59 Brian Murray apport (Ubuntu Wily): status Triaged In Progress
2015-11-04 18:18:06 Chris J Arges apport (Ubuntu Wily): status In Progress Fix Committed
2015-11-04 18:18:08 Chris J Arges bug added subscriber Ubuntu Stable Release Updates Team
2015-11-04 18:18:12 Chris J Arges bug added subscriber SRU Verification
2015-11-04 18:18:16 Chris J Arges tags xenial verification-needed xenial
2015-11-04 19:42:46 Brian Murray tags verification-needed xenial verification-done xenial
2015-11-05 13:03:13 Hans Christian Holm apport (Ubuntu Wily): status Fix Committed Fix Released
2015-11-05 16:46:28 Brian Murray apport (Ubuntu Wily): status Fix Released Fix Committed
2015-11-05 16:47:50 Brian Murray nominated for series Ubuntu Trusty
2015-11-05 16:47:50 Brian Murray bug task added apport (Ubuntu Trusty)
2015-11-05 16:47:50 Brian Murray nominated for series Ubuntu Precise
2015-11-05 16:47:50 Brian Murray bug task added apport (Ubuntu Precise)
2015-11-05 16:48:09 Brian Murray nominated for series Ubuntu Vivid
2015-11-05 16:48:09 Brian Murray bug task added apport (Ubuntu Vivid)
2015-11-05 16:48:26 Brian Murray apport (Ubuntu Precise): status New Triaged
2015-11-05 16:48:29 Brian Murray apport (Ubuntu Trusty): status New Triaged
2015-11-05 16:48:36 Brian Murray apport (Ubuntu Vivid): status New Triaged
2015-11-05 16:48:40 Brian Murray apport (Ubuntu Precise): importance Undecided High
2015-11-05 16:48:43 Brian Murray apport (Ubuntu Trusty): importance Undecided High
2015-11-05 16:48:45 Brian Murray apport (Ubuntu Vivid): importance Undecided High
2015-11-05 17:06:16 Hans Christian Holm apport (Ubuntu Wily): status Fix Committed Fix Released
2015-11-05 17:22:46 Brian Murray apport (Ubuntu Wily): status Fix Released Fix Committed
2015-11-05 23:33:47 Brian Murray apport (Ubuntu Vivid): assignee Brian Murray (brian-murray)
2015-11-05 23:33:50 Brian Murray apport (Ubuntu Vivid): status Triaged In Progress
2015-11-06 15:17:29 Brian Murray apport (Ubuntu Trusty): status Triaged In Progress
2015-11-06 15:18:55 Brian Murray apport (Ubuntu Trusty): assignee Brian Murray (brian-murray)
2015-11-06 15:24:21 Brian Murray apport (Ubuntu Precise): status Triaged In Progress
2015-11-06 15:24:24 Brian Murray apport (Ubuntu Precise): assignee Brian Murray (brian-murray)
2015-11-06 16:33:51 Launchpad Janitor branch linked lp:~ubuntu-core-dev/ubuntu/precise/apport/ubuntu
2015-11-09 17:24:26 Adam Conrad apport (Ubuntu Precise): status In Progress Fix Committed
2015-11-09 17:24:34 Adam Conrad tags verification-done xenial xenial
2015-11-09 17:24:35 Adam Conrad tags xenial verification-needed xenial
2015-11-09 17:25:04 Adam Conrad apport (Ubuntu Trusty): status In Progress Fix Committed
2015-11-09 17:25:33 Adam Conrad apport (Ubuntu Vivid): status In Progress Fix Committed
2015-11-09 18:36:32 Brian Murray tags verification-needed xenial verification-done-vivid verification-done-wily verification-needed xenial
2015-11-09 19:01:14 Brian Murray tags verification-done-vivid verification-done-wily verification-needed xenial verification-done-trusty verification-done-vivid verification-done-wily verification-needed xenial
2015-11-09 20:34:22 Ubuntu Foundations Team Bug Bot tags verification-done-trusty verification-done-vivid verification-done-wily verification-needed xenial verification-done-trusty verification-done-vivid verification-done-wily verification-failed verification-needed xenial
2015-11-09 20:40:31 Brian Murray tags verification-done-trusty verification-done-vivid verification-done-wily verification-failed verification-needed xenial verification-done-trusty verification-done-vivid verification-done-wily verification-failed-precise verification-needed xenial
2015-11-16 23:39:46 Launchpad Janitor apport (Ubuntu Trusty): status Fix Committed Fix Released
2015-11-16 23:40:34 Launchpad Janitor apport (Ubuntu Vivid): status Fix Committed Fix Released
2015-11-16 23:41:09 Launchpad Janitor apport (Ubuntu Wily): status Fix Committed Fix Released
2016-01-07 00:07:15 Mathew Hodson tags verification-done-trusty verification-done-vivid verification-done-wily verification-failed-precise verification-needed xenial verification-done-trusty verification-done-vivid verification-done-wily verification-failed xenial
2016-05-12 13:40:11 Martin Pitt apport (Ubuntu Precise): status Fix Committed Won't Fix
2016-05-12 13:40:20 Martin Pitt removed subscriber Ubuntu Stable Release Updates Team
2016-05-12 13:40:21 Martin Pitt removed subscriber SRU Verification