qontract-reconcile 0.10.1rc980__py3-none-any.whl → 0.10.1rc981__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.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/RECORD +6 -6
- reconcile/utils/promotion_state.py +4 -1
- {qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.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.1rc981
|
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.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/RECORD
RENAMED
@@ -693,7 +693,7 @@ reconcile/utils/pagerduty_api.py,sha256=_24i9S_4X7nlvHb-7clXRE0p1BG4ODjOzKxWO-F9
|
|
693
693
|
reconcile/utils/parse_dhms_duration.py,sha256=TONpLnec5gHeF7k815YNJpQyDjXhkxZIcv9s8ffbTSY,1840
|
694
694
|
reconcile/utils/password_validator.py,sha256=XwuWg-8CPlcuG7dl_oQ1G1h2gSVSnfMym_VkuprpWVg,2183
|
695
695
|
reconcile/utils/prometheus.py,sha256=Ad0rwLbxRuuYjHwkwJloHEdK0bvy42h-p-HIT1DhDhs,3832
|
696
|
-
reconcile/utils/promotion_state.py,sha256=
|
696
|
+
reconcile/utils/promotion_state.py,sha256=McSgGj3oog83ThJCrMR2v8q6Xb_Pxij-HEe_RbDu8cg,3946
|
697
697
|
reconcile/utils/promtool.py,sha256=UmBfTHgW9Ys7fZ9BfhIVJEFGLkbge9y1AgL5PNHp7iA,2831
|
698
698
|
reconcile/utils/quay_api.py,sha256=wyPD9F1do0FsAcmIr7RejUOs4zaKs8-OUylxI3MLk8A,7860
|
699
699
|
reconcile/utils/raw_github_api.py,sha256=O6Q4vq7bi5ZWcfquPutc9rJ4Ef8_sFqd_RLgzpIoj0w,2920
|
@@ -851,8 +851,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
|
|
851
851
|
tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
|
852
852
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
853
853
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
854
|
-
qontract_reconcile-0.10.
|
855
|
-
qontract_reconcile-0.10.
|
856
|
-
qontract_reconcile-0.10.
|
857
|
-
qontract_reconcile-0.10.
|
858
|
-
qontract_reconcile-0.10.
|
854
|
+
qontract_reconcile-0.10.1rc981.dist-info/METADATA,sha256=lYuYXyg2Sx-Y1hi_L5IVzWXimUc--6AU9VRGcVuOh5s,2262
|
855
|
+
qontract_reconcile-0.10.1rc981.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
856
|
+
qontract_reconcile-0.10.1rc981.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
|
857
|
+
qontract_reconcile-0.10.1rc981.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
858
|
+
qontract_reconcile-0.10.1rc981.dist-info/RECORD,,
|
@@ -95,7 +95,10 @@ class PromotionState:
|
|
95
95
|
if use_cache and path_v2 in self._promotion_data_cache:
|
96
96
|
return self._promotion_data_cache[path_v2]
|
97
97
|
|
98
|
-
data = self._state.get(path_v2)
|
98
|
+
data = self._state.get(path_v2, None)
|
99
|
+
if not data:
|
100
|
+
return None
|
101
|
+
|
99
102
|
promotion_data = PromotionData(**data)
|
100
103
|
self._promotion_data_cache[path_v2] = promotion_data
|
101
104
|
return promotion_data
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc980.dist-info → qontract_reconcile-0.10.1rc981.dist-info}/top_level.txt
RENAMED
File without changes
|