production.py 956 B

1234567891011121314151617181920212223242526272829
  1. config = {
  2. 'balrog_servers': [
  3. {
  4. 'balrog_api_root': 'https://aus4-admin.mozilla.org/api',
  5. 'ignore_failures': False,
  6. 'url_replacements': [
  7. ('http://archive.mozilla.org/pub', 'http://download.cdn.mozilla.net/pub'),
  8. ],
  9. 'balrog_usernames': {
  10. 'firefox': 'ffxbld',
  11. 'thunderbird': 'tbirdbld',
  12. 'mobile': 'ffxbld',
  13. 'Fennec': 'ffxbld',
  14. }
  15. },
  16. # Bug 1261346 - temporarily disable staging balrog submissions
  17. # {
  18. # 'balrog_api_root': 'https://aus4-admin-dev.allizom.org/api',
  19. # 'ignore_failures': True,
  20. # 'balrog_usernames': {
  21. # 'firefox': 'stage-ffxbld',
  22. # 'thunderbird': 'stage-tbirdbld',
  23. # 'mobile': 'stage-ffxbld',
  24. # 'Fennec': 'stage-ffxbld',
  25. # }
  26. # }
  27. ]
  28. }