1
0
Fork 0
mirror of https://gitlab.wikimedia.org/ladsgroup/Phabricator-maintenance-bot synced 2024-11-08 13:12:38 +01:00

new_wikis_handler: Make get_file_from_gerrit support 404s

Previously, the function threw fatal on a 404.
This commit is contained in:
Martin Urbanec 2020-07-14 14:43:18 +00:00
parent 82b90d32a9
commit eda3c0632a

View file

@ -20,7 +20,11 @@ def add_text(a):
def get_file_from_gerrit(path): def get_file_from_gerrit(path):
gerrit_url = 'https://gerrit.wikimedia.org/g/' gerrit_url = 'https://gerrit.wikimedia.org/g/'
url = gerrit_url + '{0}?format=TEXT'.format(path) url = gerrit_url + '{0}?format=TEXT'.format(path)
return base64.b64decode(requests.get(url).text).decode('utf-8') r = requests.get(url)
if r.status_code == 200:
return base64.b64decode(r.text).decode('utf-8')
else:
return ''
def hostname_resolves(hostname): def hostname_resolves(hostname):