Bug 1085557 - Switch symbol upload to use Socorro production server. r=rhelmer, a=NPOTB
--- a/toolkit/crashreporter/tools/upload_symbols.py
+++ b/toolkit/crashreporter/tools/upload_symbols.py
@@ -15,21 +15,17 @@
from __future__ import print_function
import os
import requests
import sys
from buildconfig import substs
-# This is the staging server
-url = 'https://crash-stats.allizom.org/symbols/upload'
-# This is the production server, we'll switch this
-# once we're comfortable this works.
-#url = 'https://crash-stats.mozilla.com/symbols/upload'
+url = 'https://crash-stats.mozilla.com/symbols/upload'
def main():
if len(sys.argv) != 2:
print('Usage: uploadsymbols.py <zip file>', file=sys.stderr)
return 1
if not os.path.isfile(sys.argv[1]):
print('Error: zip file "{0}" does not exist!'.format(sys.argv[1]),