From e75eed01a8f0cfa89e8393f8ca400f9c079f2d43 Mon Sep 17 00:00:00 2001 From: sbgap Date: Mon, 23 Oct 2023 17:29:13 +0200 Subject: [PATCH] fix: add / to escalate url --- alertaclient/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alertaclient/api.py b/alertaclient/api.py index 634dd46..9abcbe9 100644 --- a/alertaclient/api.py +++ b/alertaclient/api.py @@ -493,7 +493,7 @@ def housekeeping(self, expired_delete_hours=None, info_delete_hours=None): raise UnknownError(response.text) def escalate(self): - self.http.session.get('escalate', auth=self.http.auth) + self.http.get('/escalate', auth=self.http.auth) class ApiKeyAuth(AuthBase):