Skip to content
This repository has been archived by the owner on May 15, 2018. It is now read-only.

Commit

Permalink
Don't use buildurl for locale repacks which points to en-US builds (#796
Browse files Browse the repository at this point in the history
)
  • Loading branch information
whimboo committed Jun 17, 2016
1 parent fa58fc4 commit 93d492a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ def _on_message(self, data):
'branch': data['branch'],
'buildid': data['buildid'],
'build_number': data.get('build_number'),
'build_url': data.get('buildurl'), # not present in l10n builds
# buildurl for l10n repacks point to en-US which we don't want
'build_url': data['buildurl'] if data['locale'] == 'en-US' else None,
'locale': data['locale'],
'platform': data['platform'],
'product': data['product'].lower(),
Expand Down

0 comments on commit 93d492a

Please sign in to comment.