Bug 1336602 - Migrate http->https for all references to hg (or anything else that can be updated), r=kmoir
authorAlin Selagea <aselagea@mozilla.com>
Tue, 07 Feb 2017 16:45:49 +0200 (2017-02-07)
changeset 5083 a22012e2ee94e05fefb933a6606b640a60b9ae6a
parent 5068 ffecdcc918c4ce753c1d89dbb35586963e313344
child 5084 fc664d42c36f1d0f4c8132031e0b64be19bb75d6
push id4296
push useraselagea@mozilla.com
push dateTue, 07 Feb 2017 14:46:39 +0000 (2017-02-07)
reviewerskmoir
bugs1336602
Bug 1336602 - Migrate http->https for all references to hg (or anything else that can be updated), r=kmoir
process/factory.py
--- a/process/factory.py
+++ b/process/factory.py
@@ -1046,17 +1046,17 @@ class MercurialBuildFactory(MozillaBuild
                              'buildfarm',
                              'utils',
                              'archiver_client.py')
         else:
             self.addStep(ShellCommand(
                 command=['bash', '-c',
                          'wget -Oarchiver_client.py ' +
                          '--no-check-certificate --tries=10 --waitretry=3 ' +
-                         'http://hg.mozilla.org/build/tools/raw-file/default/buildfarm/utils/archiver_client.py'],
+                         'https://hg.mozilla.org/build/tools/raw-file/default/buildfarm/utils/archiver_client.py'],
                 haltOnFailure=True,
                 workdir='.',
             ))
             archiver_client_path = 'archiver_client.py'
 
 
         self.addStep(ShellCommand(
             name='rm_mozharness',