Skip to content

Commit 1c8420c

Browse files
committed
Organization api uptake changes
1 parent e9eaa72 commit 1c8420c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twilio/auth_strategy/token_auth_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def requires_authentication(self) -> bool:
2626

2727
def fetch_token(self):
2828
if self.token is None or self.token == "" or self.is_token_expired(self.token):
29-
# with self.lock:
29+
with self.lock:
3030
if self.token is None or self.token == "" or self.is_token_expired(self.token):
3131
self.logger.info("New token fetched for accessing organization API")
3232
self.token = self.token_manager.fetch_access_token()

0 commit comments

Comments
 (0)