qontract-reconcile 0.10.1rc901__py3-none-any.whl → 0.10.1rc902__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.1rc901
3
+ Version: 0.10.1rc902
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
@@ -466,7 +466,7 @@ reconcile/templating/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
466
466
  reconcile/templating/renderer.py,sha256=nras4EkJeyMwJ86R4FB0xGX0TcLfjYxT4bTuA3Glfx0,11773
467
467
  reconcile/templating/validator.py,sha256=L_5kvY1LJTNQUmhPZZoB62NBiTKFIjlia0j6jZGdvh8,4660
468
468
  reconcile/templating/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
469
- reconcile/templating/lib/merge_request_manager.py,sha256=JUkfF3smaQ8onzKF5F7UpmA7MWaQpftANy6dDo1FCug,5464
469
+ reconcile/templating/lib/merge_request_manager.py,sha256=4oe3EwQOP7CZSraocivbRzzOuVb0ooElaUS2_DGsF50,5603
470
470
  reconcile/templating/lib/model.py,sha256=fb6FYYLQjmoh2DjVKO7TEWCuDPf1Q34xmOx0M9Z07ek,324
471
471
  reconcile/templating/lib/rendering.py,sha256=ShYt_BOMS75yiJ7lNcI9NoZyQp5wpy_lEmzVETY57dE,5030
472
472
  reconcile/terraform_init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -844,8 +844,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
844
844
  tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
845
845
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
846
846
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
847
- qontract_reconcile-0.10.1rc901.dist-info/METADATA,sha256=ajNH3FKyAgiAEU36s_fRqlubaWQuOpyApTeND5vKlYw,2273
848
- qontract_reconcile-0.10.1rc901.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
- qontract_reconcile-0.10.1rc901.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
- qontract_reconcile-0.10.1rc901.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
- qontract_reconcile-0.10.1rc901.dist-info/RECORD,,
847
+ qontract_reconcile-0.10.1rc902.dist-info/METADATA,sha256=VazQRyxvDhiRQ2DbTRuo0UEhfH18pdcyVT00AIctC1I,2273
848
+ qontract_reconcile-0.10.1rc902.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
+ qontract_reconcile-0.10.1rc902.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
+ qontract_reconcile-0.10.1rc902.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
+ qontract_reconcile-0.10.1rc902.dist-info/RECORD,,
@@ -148,12 +148,14 @@ class MergeRequestManager(MergeRequestManagerBase[TemplateInfo]):
148
148
  if mr := self._merge_request_already_exists({"collection": collection}):
149
149
  if mr.mr_info.collection_hash == collection_hash:
150
150
  logging.info(
151
- "MR already exists and has the same template hash. Skipping",
151
+ "MR already exists and has the same template hash. Skipping: %s",
152
+ mr.raw.attributes.get("web_url", "NO_WEBURL"),
152
153
  )
153
154
  return None
154
155
  else:
155
156
  logging.info(
156
- "Collection Hash changed. Closing it",
157
+ "Collection Hash changed. Closing: %s",
158
+ mr.raw.attributes.get("web_url", "NO_WEBURL"),
157
159
  )
158
160
  self._vcs.close_app_interface_mr(
159
161
  mr.raw,