production.py (1244B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 config = { 6 "balrog_servers": [ 7 { 8 "balrog_api_root": "https://aus4-admin.mozilla.org/api", 9 "ignore_failures": False, 10 "url_replacements": [ 11 ( 12 "http://archive.mozilla.org/pub", 13 "http://download.cdn.mozilla.net/pub", 14 ), 15 ], 16 "balrog_usernames": { 17 "firefox": "balrog-ffxbld", 18 "thunderbird": "balrog-tbirdbld", 19 "mobile": "balrog-ffxbld", 20 "Fennec": "balrog-ffxbld", 21 }, 22 }, 23 # Bug 1261346 - temporarily disable staging balrog submissions 24 # { 25 # 'balrog_api_root': 'https://aus4-admin-dev.allizom.org/api', 26 # 'ignore_failures': True, 27 # 'balrog_usernames': { 28 # 'firefox': 'stage-ffxbld', 29 # 'thunderbird': 'stage-tbirdbld', 30 # 'mobile': 'stage-ffxbld', 31 # 'Fennec': 'stage-ffxbld', 32 # } 33 # } 34 ] 35 }