boto3-refresh-session 0.1.18__tar.gz → 0.1.19__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/PKG-INFO +1 -1
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/boto3_refresh_session/session.py +4 -5
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/pyproject.toml +1 -1
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/LICENSE +0 -0
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/README.md +0 -0
- {boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/boto3_refresh_session/__init__.py +0 -0
{boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/boto3_refresh_session/session.py
RENAMED
@@ -137,11 +137,10 @@ class AutoRefreshableSession:
|
|
137
137
|
"""
|
138
138
|
|
139
139
|
# being careful not to duplicate logs
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
logger.info(msg)
|
140
|
+
if (self.defer_refresh and self._creds_already_fetched) or (
|
141
|
+
not self.defer_refresh and self._creds_already_fetched > 1
|
142
|
+
):
|
143
|
+
logger.info("Refreshing temporary AWS credentials")
|
145
144
|
else:
|
146
145
|
self._creds_already_fetched += 1
|
147
146
|
|
File without changes
|
File without changes
|
{boto3_refresh_session-0.1.18 → boto3_refresh_session-0.1.19}/boto3_refresh_session/__init__.py
RENAMED
File without changes
|