File tree 1 file changed +3
-3
lines changed
packages/smithy-aws-core/src/smithy_aws_core/credentials_resolvers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
import json
4
- import threading
4
+ import asyncio
5
5
from dataclasses import dataclass
6
6
from datetime import datetime , timedelta
7
7
from typing import Literal
@@ -55,7 +55,7 @@ def __init__(
55
55
self ._http_client = http_client
56
56
self ._base_uri = base_uri
57
57
self ._token_ttl = self ._validate_token_ttl (token_ttl )
58
- self ._refresh_lock = threading .Lock ()
58
+ self ._refresh_lock = asyncio .Lock ()
59
59
self ._token = None
60
60
61
61
def _validate_token_ttl (self , ttl : int ) -> int :
@@ -72,7 +72,7 @@ def _should_refresh(self) -> bool:
72
72
73
73
async def _refresh (self ) -> None :
74
74
"""Refreshes the token if needed, with thread safety."""
75
- with self ._refresh_lock :
75
+ async with self ._refresh_lock :
76
76
if not self ._should_refresh ():
77
77
return
78
78
headers = Fields (
You can’t perform that action at this time.
0 commit comments