qontract-reconcile 0.10.1rc571__py3-none-any.whl → 0.10.1rc573__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.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc571
3
+ Version: 0.10.1rc573
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
@@ -115,7 +115,7 @@ reconcile/terraform_resources.py,sha256=UJfygWCnLJAouAXU7EYpF-GBtqujeypMsWq04HZT
115
115
  reconcile/terraform_tgw_attachments.py,sha256=_g7QSHM03YZzTU7O189S4HYtUn7WmwOBq67G4AieU24,15298
116
116
  reconcile/terraform_users.py,sha256=kXRUxCUchKCP2dbXXOzctynqMii4oyCP6bYZHQTrlTg,10202
117
117
  reconcile/terraform_vpc_peerings.py,sha256=rnDH1u93OyzrBM8Hib0HwSnlxZtx4ScRQaZAcn3mx-k,25402
118
- reconcile/vault_replication.py,sha256=b23ZfsQwS470GMvPPv1E6TU8MLBg3HX31_9IvMzE1tk,17280
118
+ reconcile/vault_replication.py,sha256=79GZ_kCimPoQcxkdhkWTQxPOAa46E0mNhf05s_Mk5so,17385
119
119
  reconcile/vpc_peerings_validator.py,sha256=Kv22HJVlTW9l9GB2eXwjPWqdDbr_VuvQBNPttox6s5o,7177
120
120
  reconcile/aus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
121
  reconcile/aus/advanced_upgrade_service.py,sha256=DQ9FrphzhKsKaXbXeA2v3Qsg1ABXXEtPhD-R-FwUsBA,21007
@@ -684,8 +684,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
684
684
  tools/test/test_qontract_cli.py,sha256=EzJwaPxQw5CLPahLjh91oRT0pi1WCgOXZ_KgiNXZMAw,2948
685
685
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
686
686
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
687
- qontract_reconcile-0.10.1rc571.dist-info/METADATA,sha256=W37i4mZd5JoJ-XvzVbe9F31jPxujpXA5j-9dFNBeW70,2349
688
- qontract_reconcile-0.10.1rc571.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
689
- qontract_reconcile-0.10.1rc571.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
690
- qontract_reconcile-0.10.1rc571.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
691
- qontract_reconcile-0.10.1rc571.dist-info/RECORD,,
687
+ qontract_reconcile-0.10.1rc573.dist-info/METADATA,sha256=jrEb0j83iZgPInduZ686A6iFxyX7iJSKPBb_ZSRgB5I,2349
688
+ qontract_reconcile-0.10.1rc573.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
689
+ qontract_reconcile-0.10.1rc573.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
690
+ qontract_reconcile-0.10.1rc573.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
691
+ qontract_reconcile-0.10.1rc573.dist-info/RECORD,,
@@ -436,15 +436,18 @@ def run(dry_run: bool) -> None:
436
436
  # Private class _VaultClient is used because the public class is
437
437
  # defined as a singleton, and we need to create multiple instances
438
438
  # as the source vault is different than the replication.
439
- with _VaultClient(
440
- server=source_creds["server"],
441
- role_id=source_creds["role_id"],
442
- secret_id=source_creds["secret_id"],
443
- ) as source_vault, _VaultClient(
444
- server=dest_creds["server"],
445
- role_id=dest_creds["role_id"],
446
- secret_id=dest_creds["secret_id"],
447
- ) as dest_vault:
439
+ with (
440
+ _VaultClient(
441
+ server=source_creds["server"],
442
+ role_id=source_creds["role_id"],
443
+ secret_id=source_creds["secret_id"],
444
+ ) as source_vault,
445
+ _VaultClient(
446
+ server=dest_creds["server"],
447
+ role_id=dest_creds["role_id"],
448
+ secret_id=dest_creds["secret_id"],
449
+ ) as dest_vault,
450
+ ):
448
451
  replicate_paths(
449
452
  dry_run=dry_run,
450
453
  source_vault=source_vault,