aboutsummaryrefslogtreecommitdiff
path: root/modules/github
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-22 22:06:25 +0000
committerGravatar jesopo2019-01-22 22:06:25 +0000
commitf4467ac0ed364385c0cd16309406167a529f3d39 (patch)
treebaa47bcd28ebcd56482f8883f912428813a3803e /modules/github
parentDon't show current event filters comma-separated as they're not comma separated (diff)
signature
Log a WARN when we get a HTTPTimeoutException while we're trying to get a git.io
short url (github)
Diffstat (limited to 'modules/github')
-rw-r--r--modules/github/module.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/github/module.py b/modules/github/module.py
index 73b0ea98..7766c18d 100644
--- a/modules/github/module.py
+++ b/modules/github/module.py
@@ -340,6 +340,8 @@ class Module(ModuleManager.BaseModule):
post_data={"url": url})
return page.headers["Location"]
except utils.http.HTTPTimeoutException:
+ self.log.warn(
+ "HTTPTimeoutException while waiting for github short URL")
return url
def ping(self, event, data):