Skip to content

Commit

Permalink
Merge pull request #4308 from willkg/1433988-590b2
Browse files Browse the repository at this point in the history
fixes bug 1433988 - update AuroraVersionFixitRule re: 59.0b2
  • Loading branch information
willkg committed Jan 29, 2018
2 parents f90974c + 5899b5d commit cfbf5c5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions socorro/processor/mozilla_transform_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -837,20 +837,27 @@ class AuroraVersionFixitRule(Rule):
devedition to its own "product" that are respins of the beta channel
builds. These builds still use "aurora" as the release channel.
However, the devedition .0b1 release needs to be treated as an aurora for
Firefox. Because this breaks the invariants of Socorro as well as the laws
of physics, we fix these crashes by hand using a processor rule.
However, the devedition .0b1 and .0b2 releases need to be treated as an
"aurora" for Firefox. Because this breaks the invariants of Socorro
(channel and version don't match) as well as the laws of physics, we fix
these crashes by hand using a processor rule until we have time to swap
ftpscraper and all the stored procedures out for buildhub scraper.
"""

# NOTE(willkg): We'll have to add a build id -> version every time a new one comes
# out. Ugh.
buildid_to_version = {
'20170612224034': '55.0b1',
'20170615070049': '55.0b2',
'20170808170225': '56.0b1',
'20170810180547': '56.0b2',
'20170917031738': '57.0b1',
'20170921191414': '57.0b2',
'20171103003834': '58.0b1',
'20171109154410': '58.0b2',
'20180113035635': '59.0b1',
'20180117222144': '59.0b2',
}

def version(self):
Expand Down

0 comments on commit cfbf5c5

Please sign in to comment.