jira: Allow overriding https.
This commit is contained in:
parent
ae8a3516fb
commit
3ca336246d
|
@ -127,6 +127,11 @@ class JiraHandler:
|
||||||
raise KeyError('No `domain` was specified')
|
raise KeyError('No `domain` was specified')
|
||||||
|
|
||||||
self.auth = make_jira_auth(username, password)
|
self.auth = make_jira_auth(username, password)
|
||||||
|
|
||||||
|
# Allow users to override the HTTP scheme
|
||||||
|
if re.match(r'^https?://', domain, re.IGNORECASE):
|
||||||
|
self.domain_with_protocol = domain
|
||||||
|
else:
|
||||||
self.domain_with_protocol = 'https://' + domain
|
self.domain_with_protocol = 'https://' + domain
|
||||||
|
|
||||||
def handle_message(self, message: Dict[str, str], bot_handler: Any) -> None:
|
def handle_message(self, message: Dict[str, str], bot_handler: Any) -> None:
|
||||||
|
|
Loading…
Reference in a new issue