Skip to content

Commit c4d7b6f

Browse files
committed
actually call base call from token auth
1 parent 58cd331 commit c4d7b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jira/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def __init__(self, token: str, session: ResilientSession | None = None):
429429
def __call__(self, r: requests.PreparedRequest):
430430
# modify and return the request
431431
r.headers["authorization"] = f"Bearer {self._token}"
432-
return r
432+
return super().__call__(r)
433433

434434
def init_session(self):
435435
pass # token should still work, only thing needed is to clear session cookies which happens next

0 commit comments

Comments
 (0)