qontract-reconcile 0.10.2.dev127__py3-none-any.whl → 0.10.2.dev129__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qontract-reconcile
3
- Version: 0.10.2.dev127
3
+ Version: 0.10.2.dev129
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
@@ -198,7 +198,7 @@ reconcile/endpoints_discovery/integration.py,sha256=ecjIZK_h6JO2wUhUmJlZ9pjOh60n
198
198
  reconcile/endpoints_discovery/merge_request.py,sha256=_yLb4tnvoZMCko8rta2C_CvOInJa9pa3HzSmHNtjgGU,2978
199
199
  reconcile/endpoints_discovery/merge_request_manager.py,sha256=a8zTIQIpRrUwXexZClwpQnnkEoS6XNZLJziI9x7ly0s,6389
200
200
  reconcile/external_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
- reconcile/external_resources/aws.py,sha256=XVM3xjx4Qa5sJFZQ1ejg8btK-NWRrE4lxhYUhW-rIpQ,12150
201
+ reconcile/external_resources/aws.py,sha256=nvghzolcM_xR5ElNNt_PCZsCPzxTehsrzhzC6Y9NtKw,11983
202
202
  reconcile/external_resources/factories.py,sha256=C0QHT0soEv6z99-ELAAE19S5MaMHhV0t1fSiQn0Coc4,5970
203
203
  reconcile/external_resources/integration.py,sha256=WF6O4rT0oUHbNaWEemjLLzCqdNSQIUaymUuj08VsIl8,7034
204
204
  reconcile/external_resources/integration_secrets_sync.py,sha256=CImwt_tyS3MMGpkjI_0gZqYt4XgqIw4BtdJiDH2xrCk,1700
@@ -791,7 +791,7 @@ tools/saas_promotion_state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
791
791
  tools/saas_promotion_state/saas_promotion_state.py,sha256=UfwwRLS5Ya4_Nh1w5n1dvoYtchQvYE9yj1VANt2IKqI,3925
792
792
  tools/sre_checkpoints/__init__.py,sha256=CDaDaywJnmRCLyl_NCcvxi-Zc0hTi_3OdwKiFOyS39I,145
793
793
  tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y,894
794
- qontract_reconcile-0.10.2.dev127.dist-info/METADATA,sha256=MZa1Z75ScJTRAg6c6E1GS6exq7gFyWYwIoxaIk8m5A0,24566
795
- qontract_reconcile-0.10.2.dev127.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
796
- qontract_reconcile-0.10.2.dev127.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
797
- qontract_reconcile-0.10.2.dev127.dist-info/RECORD,,
794
+ qontract_reconcile-0.10.2.dev129.dist-info/METADATA,sha256=ndVEjngQXOngXONCWSpU3_GkfSDokcOhYYTdbWuucW0,24566
795
+ qontract_reconcile-0.10.2.dev129.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
796
+ qontract_reconcile-0.10.2.dev129.dist-info/entry_points.txt,sha256=5i9l54La3vQrDLAdwDKQWC0iG4sV9RRfOb1BpvzOWLc,698
797
+ qontract_reconcile-0.10.2.dev129.dist-info/RECORD,,
@@ -163,9 +163,6 @@ class AWSRdsFactory(AWSDefaultResourceFactory):
163
163
  if "parameter_group" in data:
164
164
  pg_data = rvr._get_values(data["parameter_group"])
165
165
  data["parameter_group"] = pg_data
166
- if "old_parameter_group" in data:
167
- old_pg_data = rvr._get_values(data["old_parameter_group"])
168
- data["old_parameter_group"] = old_pg_data
169
166
  if (
170
167
  (blue_green_deployment := data.get("blue_green_deployment"))
171
168
  and (target := blue_green_deployment.get("target"))