Skip to content

Commit

Permalink
fix. ответа при протухании токена 401.
Browse files Browse the repository at this point in the history
  • Loading branch information
MSITETOP committed Jul 18, 2024
1 parent b3d1ab8 commit 931ed22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fast_bitrix24/srh.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def request_attempt(self, method, params=None) -> dict:
# нужно получить или освежить токен

# TODO: нужно как-то отличать проблему протухания токена от других проблем
elif error.status == 403 and self.token_func:
elif error.status == 401 and self.token_func:

# запрашиваем новый токен, только если процесс получения токена еще не запущен
if not self.token_request_in_progress.is_set():
Expand Down

0 comments on commit 931ed22

Please sign in to comment.