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
1=== modified file 'phased-updater'
2--- phased-updater 2014-02-24 17:57:37 +0000
3+++ phased-updater 2014-02-26 18:00:56 +0000
4@@ -373,7 +373,7 @@
5 # bucket['web_link'])
6 # continue
7 # Skip failed buckets as they don't have useful tracebacks
8- if 'failed:' in bucket['function']:
9+ if bucket['function'].startswith('failed:'):
10 logging.info('Skipped failed to retrace bucket %s' %
11 bucket['web_link'])
12 continue
13@@ -485,7 +485,9 @@
14 else:
15 issues[rname][pub_source] = {}
16 issues[rname][pub_source]['buckets'] = problems
17- rate_increase = crash_rate_increase(rvers, src_pkg, version)
18+ # 2014-02-26 set to false until new errors deployment done
19+ #rate_increase = crash_rate_increase(rvers, src_pkg, version)
20+ rate_increase = False
21 # Unset the rate_increase until it is more useful
22 if rate_increase:
23 logging.info('Disregarding rate increase for: %s' % src_pkg)

Subscribers

People subscribed via source and target branches