python3-commons 0.20.6__py3-none-any.whl → 0.20.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- python3_commons/auth.py +6 -4
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/METADATA +1 -1
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/RECORD +7 -7
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/WHEEL +0 -0
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/licenses/AUTHORS.rst +0 -0
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/licenses/LICENSE +0 -0
- {python3_commons-0.20.6.dist-info → python3_commons-0.20.7.dist-info}/top_level.txt +0 -0
python3_commons/auth.py
CHANGED
|
@@ -17,7 +17,9 @@ except ImportError as e:
|
|
|
17
17
|
import msgspec
|
|
18
18
|
|
|
19
19
|
logger = logging.getLogger(__name__)
|
|
20
|
-
|
|
20
|
+
_OIDC_CONFIG_LOCK = threading.Lock()
|
|
21
|
+
_OIDC_JWKS_LOCK = threading.Lock()
|
|
22
|
+
_OIDC_SESSION_LOCK = threading.Lock()
|
|
21
23
|
|
|
22
24
|
|
|
23
25
|
class TokenData(msgspec.Struct):
|
|
@@ -101,7 +103,7 @@ class OIDCClient:
|
|
|
101
103
|
if self._session:
|
|
102
104
|
return self._session
|
|
103
105
|
|
|
104
|
-
with
|
|
106
|
+
with _OIDC_SESSION_LOCK:
|
|
105
107
|
if self._session:
|
|
106
108
|
return self._session
|
|
107
109
|
|
|
@@ -145,7 +147,7 @@ class OIDCClient:
|
|
|
145
147
|
if self._config:
|
|
146
148
|
return self._config
|
|
147
149
|
|
|
148
|
-
with
|
|
150
|
+
with _OIDC_CONFIG_LOCK:
|
|
149
151
|
if self._config:
|
|
150
152
|
return self._config
|
|
151
153
|
|
|
@@ -180,7 +182,7 @@ class OIDCClient:
|
|
|
180
182
|
if self._jwks:
|
|
181
183
|
return self._jwks
|
|
182
184
|
|
|
183
|
-
with
|
|
185
|
+
with _OIDC_JWKS_LOCK:
|
|
184
186
|
if self._jwks:
|
|
185
187
|
return self._jwks
|
|
186
188
|
|
|
@@ -2,7 +2,7 @@ python3_commons/__init__.py,sha256=0KgaYU46H_IMKn-BuasoRN3C4Hi45KlkHHoPbU9cwiA,1
|
|
|
2
2
|
python3_commons/api_client.py,sha256=yerFJNY_SHhYo9FGLv29oHVIGgeXDNzTzMNfFYZpZ0w,5501
|
|
3
3
|
python3_commons/async_functools.py,sha256=A2HvwFzZHxOWTp4IQM5UiBY2yg1S_0U1CWra5BWK0gk,9101
|
|
4
4
|
python3_commons/audit.py,sha256=uGoCwenDJ0Gdwbr_VNOZm5scT8luxW1weprJbbMoHo0,2608
|
|
5
|
-
python3_commons/auth.py,sha256=
|
|
5
|
+
python3_commons/auth.py,sha256=FruxtIwHCHwxaVeu0bxbqrWXFSdS3suEhOMJlqyI79Q,7761
|
|
6
6
|
python3_commons/cache.py,sha256=lowiXJqFgFy1Yg86wi9IhuoNqIUGP6nc5eNibmf0dfY,8018
|
|
7
7
|
python3_commons/conf.py,sha256=1HYtNkNBQc5IIABzhH3kz7GnLeF7rj5aNcOoW8xbEa4,3101
|
|
8
8
|
python3_commons/exceptions.py,sha256=EGjHZVBnsM6CeBfPMqhL0IPMKjDJ_2-Z-aSPXwq91LE,36
|
|
@@ -27,9 +27,9 @@ python3_commons/serializers/common.py,sha256=VkA7C6wODvHk0QBXVX_x2JieDstihx3U__U
|
|
|
27
27
|
python3_commons/serializers/json.py,sha256=UPkC3ps13x2C_NxwVV-K7Ewp4VjkVHSSUkJVw5k7Wiw,712
|
|
28
28
|
python3_commons/serializers/msgpack.py,sha256=zESFBX34GsZ8rDu6Zk5V6CLT6P0mPilU0r04Ka6TblI,1474
|
|
29
29
|
python3_commons/serializers/msgspec.py,sha256=upy5CBmK66-8hYnK5bAM_sZvZY5CAqZmzCw9GIF346I,2988
|
|
30
|
-
python3_commons-0.20.
|
|
31
|
-
python3_commons-0.20.
|
|
32
|
-
python3_commons-0.20.
|
|
33
|
-
python3_commons-0.20.
|
|
34
|
-
python3_commons-0.20.
|
|
35
|
-
python3_commons-0.20.
|
|
30
|
+
python3_commons-0.20.7.dist-info/licenses/AUTHORS.rst,sha256=3R9JnfjfjH5RoPWOeqKFJgxVShSSfzQPIrEr1nxIo9Q,90
|
|
31
|
+
python3_commons-0.20.7.dist-info/licenses/LICENSE,sha256=xxILuojHm4fKQOrMHPSslbyy6WuKAN2RiG74HbrYfzM,34575
|
|
32
|
+
python3_commons-0.20.7.dist-info/METADATA,sha256=dNE1cEVe-kzCqwJzrv9PY-Nfm7YfrD3NcijdddSkrtU,2333
|
|
33
|
+
python3_commons-0.20.7.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
34
|
+
python3_commons-0.20.7.dist-info/top_level.txt,sha256=lJI6sCBf68eUHzupCnn2dzG10lH3jJKTWM_hrN1cQ7M,16
|
|
35
|
+
python3_commons-0.20.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|