Merge lp:~brian-murray/ubuntu-archive-tools/no-rate-increase into lp:ubuntu-archive-tools

Proposed by Brian Murray
Status: Merged
Merged at revision: 817
Proposed branch: lp:~brian-murray/ubuntu-archive-tools/no-rate-increase
Merge into: lp:ubuntu-archive-tools
Diff against target: 23 lines (+4/-2)
1 file modified
phased-updater (+4/-2)
To merge this branch: bzr merge lp:~brian-murray/ubuntu-archive-tools/no-rate-increase
Reviewer Review Type Date Requested Status
Ubuntu Package Archive Administrators Pending
Review via email: mp+208445@code.launchpad.net

Description of the change

I'm creating an improved version of the errors API to check and see if there is a increase in the rate of crashes about a package, because the change requires additional arguments this branch stops checking for a rate increase. After the new API is deployed I'll submit a new merge proposal that uses that.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'phased-updater'
--- phased-updater 2014-02-24 17:57:37 +0000
+++ phased-updater 2014-02-26 18:00:56 +0000
@@ -373,7 +373,7 @@
373 # bucket['web_link'])373 # bucket['web_link'])
374 # continue374 # continue
375 # Skip failed buckets as they don't have useful tracebacks375 # Skip failed buckets as they don't have useful tracebacks
376 if 'failed:' in bucket['function']:376 if bucket['function'].startswith('failed:'):
377 logging.info('Skipped failed to retrace bucket %s' %377 logging.info('Skipped failed to retrace bucket %s' %
378 bucket['web_link'])378 bucket['web_link'])
379 continue379 continue
@@ -485,7 +485,9 @@
485 else:485 else:
486 issues[rname][pub_source] = {}486 issues[rname][pub_source] = {}
487 issues[rname][pub_source]['buckets'] = problems487 issues[rname][pub_source]['buckets'] = problems
488 rate_increase = crash_rate_increase(rvers, src_pkg, version)488 # 2014-02-26 set to false until new errors deployment done
489 #rate_increase = crash_rate_increase(rvers, src_pkg, version)
490 rate_increase = False
489 # Unset the rate_increase until it is more useful491 # Unset the rate_increase until it is more useful
490 if rate_increase:492 if rate_increase:
491 logging.info('Disregarding rate increase for: %s' % src_pkg)493 logging.info('Disregarding rate increase for: %s' % src_pkg)

Subscribers

People subscribed via source and target branches