Skip to content

Commit 4b6ad60

Browse files
gmishkinstudioj
authored andcommitted
actually call base call from token auth
1 parent 77300c9 commit 4b6ad60

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
@@ -432,7 +432,7 @@ def __init__(self, token: str, session: ResilientSession | None = None):
432432
def __call__(self, r: requests.PreparedRequest):
433433
# modify and return the request
434434
r.headers["authorization"] = f"Bearer {self._token}"
435-
return r
435+
return super().__call__(r)
436436

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

0 commit comments

Comments
 (0)