pypomes-iam 0.1.5__tar.gz → 0.1.6__tar.gz
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.
Potentially problematic release.
This version of pypomes-iam might be problematic. Click here for more details.
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/PKG-INFO +1 -1
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/pyproject.toml +1 -1
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/src/pypomes_iam/jusbr_pomes.py +2 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/.gitignore +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/LICENSE +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/README.md +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/src/pypomes_iam/__init__.py +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/src/pypomes_iam/keycloak_pomes.py +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/src/pypomes_iam/provider_pomes.py +0 -0
- {pypomes_iam-0.1.5 → pypomes_iam-0.1.6}/src/pypomes_iam/token_pomes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypomes_iam
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A collection of Python pomes, penyeach (IAM modules)
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-IAM
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-IAM/issues
|
|
@@ -495,6 +495,8 @@ def __post_jusbr(user_data: dict[str, Any],
|
|
|
495
495
|
# request resulted in error
|
|
496
496
|
err_msg = (f"POST '{url}': failed, "
|
|
497
497
|
f"status {response.status_code}, reason '{response.reason}'")
|
|
498
|
+
if hasattr(response, "content") and response.content:
|
|
499
|
+
err_msg += f", content '{response.content}'"
|
|
498
500
|
if response.status_code == 401 and "refresh_token" in body_data:
|
|
499
501
|
# refresh token is no longer valid
|
|
500
502
|
safe_cache["refresh-token"] = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|