qontract-reconcile 0.10.2.dev52__py3-none-any.whl → 0.10.2.dev53__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.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.2.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/RECORD +5 -5
- reconcile/utils/aws_api.py +3 -2
- {qontract_reconcile-0.10.2.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.2.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/entry_points.txt +0 -0
{qontract_reconcile-0.10.2.dev52.dist-info → qontract_reconcile-0.10.2.dev53.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.dev53
|
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.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/RECORD
RENAMED
@@ -566,7 +566,7 @@ reconcile/unleash_feature_toggles/integration.py,sha256=nx7BhtzCsTfPbOp60vI5MkNw
|
|
566
566
|
reconcile/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
567
567
|
reconcile/utils/aggregated_list.py,sha256=_9UeaS1TWbJsGIESvXlzzK-omPI2lMMcCsoqc9LBclc,4022
|
568
568
|
reconcile/utils/amtool.py,sha256=3dHViQ_esKPaMEpiOVVSnxTaySM8ELpGVVvppqqPvUY,2289
|
569
|
-
reconcile/utils/aws_api.py,sha256=
|
569
|
+
reconcile/utils/aws_api.py,sha256=n2HMUPOnztcDt7c8GvGpT0qrpwArXke0hSCHQ1dSk6w,79439
|
570
570
|
reconcile/utils/aws_helper.py,sha256=8PvDR17ntAGX3bBzlTIxDuENl2rkK-RECsNYKm2_DZw,2955
|
571
571
|
reconcile/utils/batches.py,sha256=TtEm64a8lWhFuNbUVpFEmXVdU2Q0sTBrP_I0Cjbgh7g,320
|
572
572
|
reconcile/utils/binary.py,sha256=lSIevhilMeoGMePPHD7A-pxe45LVpBT0LksecYbM-EA,2477
|
@@ -777,7 +777,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
777
777
|
tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
|
778
778
|
tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
|
779
779
|
tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
|
780
|
-
qontract_reconcile-0.10.2.
|
781
|
-
qontract_reconcile-0.10.2.
|
782
|
-
qontract_reconcile-0.10.2.
|
783
|
-
qontract_reconcile-0.10.2.
|
780
|
+
qontract_reconcile-0.10.2.dev53.dist-info/METADATA,sha256=EDIxEZliLgRSSRxc4wkOnqm2crLK38qrDZ0eBxeI9Pw,24665
|
781
|
+
qontract_reconcile-0.10.2.dev53.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
782
|
+
qontract_reconcile-0.10.2.dev53.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
|
783
|
+
qontract_reconcile-0.10.2.dev53.dist-info/RECORD,,
|
reconcile/utils/aws_api.py
CHANGED
@@ -165,8 +165,6 @@ class AWSApi:
|
|
165
165
|
self.init_sessions_and_resources(accounts)
|
166
166
|
if init_ecr_auth_tokens:
|
167
167
|
self.init_ecr_auth_tokens(accounts)
|
168
|
-
if init_users:
|
169
|
-
self.init_users()
|
170
168
|
self._lock = Lock()
|
171
169
|
self.resource_types: list[RESOURCE_TYPE] = [
|
172
170
|
"s3",
|
@@ -197,6 +195,9 @@ class AWSApi:
|
|
197
195
|
self.get_vpc_subnets = lru_cache()(self.get_vpc_subnets) # type: ignore[method-assign]
|
198
196
|
self._get_vpc_endpoints = lru_cache()(self._get_vpc_endpoints) # type: ignore[method-assign]
|
199
197
|
|
198
|
+
if init_users:
|
199
|
+
self.init_users()
|
200
|
+
|
200
201
|
def init_sessions_and_resources(self, accounts: Iterable[awsh.Account]) -> None:
|
201
202
|
results = threaded.run(
|
202
203
|
awsh.get_tf_secrets,
|
{qontract_reconcile-0.10.2.dev52.dist-info → qontract_reconcile-0.10.2.dev53.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|