qontract-reconcile 0.10.2.dev200__py3-none-any.whl → 0.10.2.dev201__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.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/RECORD +5 -5
- reconcile/utils/aws_api.py +3 -0
- {qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/entry_points.txt +0 -0
{qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.2.
|
3
|
+
Version: 0.10.2.dev201
|
4
4
|
Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
|
5
5
|
Project-URL: homepage, https://github.com/app-sre/qontract-reconcile
|
6
6
|
Project-URL: repository, https://github.com/app-sre/qontract-reconcile
|
{qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/RECORD
RENAMED
@@ -597,7 +597,7 @@ reconcile/unleash_feature_toggles/integration.py,sha256=nx7BhtzCsTfPbOp60vI5MkNw
|
|
597
597
|
reconcile/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
reconcile/utils/aggregated_list.py,sha256=_9UeaS1TWbJsGIESvXlzzK-omPI2lMMcCsoqc9LBclc,4022
|
599
599
|
reconcile/utils/amtool.py,sha256=Ng5VVNCiPYEK67eDjIwfuuTLs5JsfltCwt6w5UfXbcY,2289
|
600
|
-
reconcile/utils/aws_api.py,sha256=
|
600
|
+
reconcile/utils/aws_api.py,sha256=7G90_TaUNoUVH3tX3_G3U80m6wj9Hy_DDhiDYq0wyz0,80521
|
601
601
|
reconcile/utils/aws_helper.py,sha256=8PvDR17ntAGX3bBzlTIxDuENl2rkK-RECsNYKm2_DZw,2955
|
602
602
|
reconcile/utils/batches.py,sha256=TtEm64a8lWhFuNbUVpFEmXVdU2Q0sTBrP_I0Cjbgh7g,320
|
603
603
|
reconcile/utils/binary.py,sha256=lSIevhilMeoGMePPHD7A-pxe45LVpBT0LksecYbM-EA,2477
|
@@ -809,7 +809,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
809
809
|
tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
|
810
810
|
tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
|
811
811
|
tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
|
812
|
-
qontract_reconcile-0.10.2.
|
813
|
-
qontract_reconcile-0.10.2.
|
814
|
-
qontract_reconcile-0.10.2.
|
815
|
-
qontract_reconcile-0.10.2.
|
812
|
+
qontract_reconcile-0.10.2.dev201.dist-info/METADATA,sha256=3ouikri05CeE-k7JL5J2T38DzVrLe8SHWQkgeta4XRs,24555
|
813
|
+
qontract_reconcile-0.10.2.dev201.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
814
|
+
qontract_reconcile-0.10.2.dev201.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
|
815
|
+
qontract_reconcile-0.10.2.dev201.dist-info/RECORD,,
|
reconcile/utils/aws_api.py
CHANGED
@@ -194,6 +194,9 @@ class AWSApi:
|
|
194
194
|
self.get_vpc_route_tables = lru_cache()(self.get_vpc_route_tables) # type: ignore[method-assign]
|
195
195
|
self.get_vpc_subnets = lru_cache()(self.get_vpc_subnets) # type: ignore[method-assign]
|
196
196
|
self._get_vpc_endpoints = lru_cache()(self._get_vpc_endpoints) # type: ignore[method-assign]
|
197
|
+
self.get_alb_network_interface_ips = lru_cache()( # type: ignore[method-assign]
|
198
|
+
self.get_alb_network_interface_ips
|
199
|
+
)
|
197
200
|
|
198
201
|
if init_users:
|
199
202
|
self.init_users()
|
{qontract_reconcile-0.10.2.dev200.dist-info → qontract_reconcile-0.10.2.dev201.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|