summaryrefslogtreecommitdiff
path: root/tools/commitfest
diff options
context:
space:
mode:
authorMagnus Hagander2017-01-07 13:09:23 +0000
committerMagnus Hagander2017-01-07 13:09:23 +0000
commitead6854f1d1a28fbc01c00dac2d7b4142081790e (patch)
tree981f8cfa2af226995e454b54cfc54f5e1404a236 /tools/commitfest
parent90100e2cb6804e3e3ad8b709fa65b13523dd943c (diff)
Attempt to support https in calls to archives
Diffstat (limited to 'tools/commitfest')
-rwxr-xr-xtools/commitfest/check_patches_in_archives.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/tools/commitfest/check_patches_in_archives.py b/tools/commitfest/check_patches_in_archives.py
index a0060ac..edea52c 100755
--- a/tools/commitfest/check_patches_in_archives.py
+++ b/tools/commitfest/check_patches_in_archives.py
@@ -48,10 +48,16 @@ if __name__ == "__main__":
url = "/message-id/attachment/%s/attach" % a.attachmentid
logging.debug("Checking attachment %s" % a.attachmentid)
- h = httplib.HTTPConnection(settings.ARCHIVES_SERVER,
- settings.ARCHIVES_PORT,
- True,
- settings.ARCHIVES_TIMEOUT)
+ if settings.ARCHIVES_PORT != 443:
+ h = httplib.HTTPConnection(settings.ARCHIVES_SERVER,
+ settings.ARCHIVES_PORT,
+ True,
+ settings.ARCHIVES_TIMEOUT)
+ else:
+ h = httplib.HTTPSConnection(settings.ARCHIVES_SERVER,
+ settings.ARCHIVES_PORT,
+ True,
+ settings.ARCHIVES_TIMEOUT)
h.request('GET', url, headers={
'Host': settings.ARCHIVES_HOST,
})