qontract-reconcile 0.10.1rc1082__py3-none-any.whl → 0.10.1rc1083__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.
- {qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/RECORD +6 -6
- reconcile/utils/vault.py +4 -1
- {qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc1083
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Home-page: https://github.com/app-sre/qontract-reconcile
|
6
6
|
Author: Red Hat App-SRE Team
|
{qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/RECORD
RENAMED
@@ -731,7 +731,7 @@ reconcile/utils/terraform_client.py,sha256=LjX2U2E0Dglt2S_KA5jWQ_dVC8sPn4FEAh0xW
|
|
731
731
|
reconcile/utils/terrascript_aws_client.py,sha256=YqMsqSJl5_P8kXPzcaWLAMxdIxhq1supwL94Xd5qPB4,281298
|
732
732
|
reconcile/utils/three_way_diff_strategy.py,sha256=oQcHXd9LVhirJfoaOBoHUYuZVGfyL2voKr6KVI34zZE,4833
|
733
733
|
reconcile/utils/throughput.py,sha256=iP4UWAe2LVhDo69mPPmgo9nQ7RxHD6_GS8MZe-aSiuM,344
|
734
|
-
reconcile/utils/vault.py,sha256=
|
734
|
+
reconcile/utils/vault.py,sha256=pi0PuyopvCq1gW0cldvy1-Ff6bqLUlCKC2MW0sifvSE,15043
|
735
735
|
reconcile/utils/vaultsecretref.py,sha256=0KUSzuvTRxPyKY919TO3-B_eYg4_76fzKvMF8j5s1G0,911
|
736
736
|
reconcile/utils/vcs.py,sha256=98SLBpqy-j_foE6NRwsyMCiPpNQtM6ujspnk6_qOURI,8881
|
737
737
|
reconcile/utils/acs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -870,8 +870,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
|
|
870
870
|
tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
|
871
871
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
872
872
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
873
|
-
qontract_reconcile-0.10.
|
874
|
-
qontract_reconcile-0.10.
|
875
|
-
qontract_reconcile-0.10.
|
876
|
-
qontract_reconcile-0.10.
|
877
|
-
qontract_reconcile-0.10.
|
873
|
+
qontract_reconcile-0.10.1rc1083.dist-info/METADATA,sha256=sA9ZtmEWYJHRfuBkfV9bkRULVM1ywEHcwa7akplQY2U,2213
|
874
|
+
qontract_reconcile-0.10.1rc1083.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
875
|
+
qontract_reconcile-0.10.1rc1083.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
|
876
|
+
qontract_reconcile-0.10.1rc1083.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
877
|
+
qontract_reconcile-0.10.1rc1083.dist-info/RECORD,,
|
reconcile/utils/vault.py
CHANGED
@@ -109,7 +109,10 @@ class _VaultClient:
|
|
109
109
|
self._refresh_client_auth()
|
110
110
|
authenticated = self._client.is_authenticated()
|
111
111
|
break
|
112
|
-
except
|
112
|
+
except (
|
113
|
+
requests.exceptions.ConnectionError,
|
114
|
+
requests.exceptions.TooManyRedirects,
|
115
|
+
):
|
113
116
|
time.sleep(1)
|
114
117
|
|
115
118
|
if not authenticated:
|
{qontract_reconcile-0.10.1rc1082.dist-info → qontract_reconcile-0.10.1rc1083.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|