We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9eaa72 commit 1c8420cCopy full SHA for 1c8420c
twilio/auth_strategy/token_auth_strategy.py
@@ -26,7 +26,7 @@ def requires_authentication(self) -> bool:
26
27
def fetch_token(self):
28
if self.token is None or self.token == "" or self.is_token_expired(self.token):
29
- # with self.lock:
+ with self.lock:
30
31
self.logger.info("New token fetched for accessing organization API")
32
self.token = self.token_manager.fetch_access_token()
0 commit comments