git_webhooks/github.py: remove git url shortening

This commit is contained in:
David Schultz 2022-01-19 21:32:50 -06:00 committed by GitHub
parent 4a6037c774
commit 904cb2d94c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,14 +172,9 @@ class GitHub(object):
return list(zip(out, [None]*len(out))) return list(zip(out, [None]*len(out)))
def _short_url(self, url): def _short_url(self, url):
self.log.debug("git.io shortening: %s" % url) # TODO: find an alternative to git.io
try: # see https://github.com/jesopo/bitbot/issues/338
page = utils.http.request("https://git.io", method="POST", # ~ examknow 1/19/2022
post_data={"url": url})
return page.headers["Location"]
except utils.http.HTTPTimeoutException:
self.log.warn(
"HTTPTimeoutException while waiting for github short URL", [])
return url return url
def _iso8601(self, s): def _iso8601(self, s):