qontract-reconcile 0.9.1rc261__py3-none-any.whl → 0.9.1rc262__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.9.1rc261
3
+ Version: 0.9.1rc262
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
@@ -265,7 +265,7 @@ reconcile/saas_auto_promotions_manager/merge_request_manager/merge_request_manag
265
265
  reconcile/saas_auto_promotions_manager/merge_request_manager/renderer.py,sha256=Lfwii68Tiobk8bU1JYco3OosYAd0A-0lvyLtSykeCWk,4598
266
266
  reconcile/saas_auto_promotions_manager/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
267
  reconcile/saas_auto_promotions_manager/utils/saas_files_inventory.py,sha256=aQ-rVGjJfD0eAWFwU0ocOGTF5BHld-49yBwSmgKtUvg,8371
268
- reconcile/saas_auto_promotions_manager/utils/vcs.py,sha256=2jSuKLg_yoQQjxaWPevZGo7n-LuvxcDIdA3h12UR6xE,5214
268
+ reconcile/saas_auto_promotions_manager/utils/vcs.py,sha256=VJYAaf7mBpPpyKqL-qCXmWscPYSVrZHEdhQy31Wp3qI,5197
269
269
  reconcile/skupper_network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
270
  reconcile/skupper_network/integration.py,sha256=jF5uPhePnWq4axnxxarEQ_tw71WBxYoTZZUoi9JrZ6M,9831
271
271
  reconcile/skupper_network/models.py,sha256=5mTONziFFDx3NJamKzdCrVHXPNfQ6dYIlwxoSBeRihQ,11403
@@ -559,8 +559,8 @@ tools/sre_checkpoints/util.py,sha256=zEDbGr18ZeHNQwW8pUsr2JRjuXIPz--WAGJxZo9sv_Y
559
559
  tools/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
560
560
  tools/test/test_qontract_cli.py,sha256=awwTHEc2DWlykuqGIYM0WOBoSL0KRnOraCLk3C7izis,1401
561
561
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
562
- qontract_reconcile-0.9.1rc261.dist-info/METADATA,sha256=Z_vAv6ujiIsYuRJnYKZBhCy7noxJclKcrICSAR63b6o,2287
563
- qontract_reconcile-0.9.1rc261.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
564
- qontract_reconcile-0.9.1rc261.dist-info/entry_points.txt,sha256=aIVvB7OTCxYu0QkONzBPfFEyg68Pr8KUVKEEm4ChDVc,333
565
- qontract_reconcile-0.9.1rc261.dist-info/top_level.txt,sha256=j0CHPIc8TsVRB50wOz_jhxjjaRyCJB3NOQeXhuHS67c,34
566
- qontract_reconcile-0.9.1rc261.dist-info/RECORD,,
562
+ qontract_reconcile-0.9.1rc262.dist-info/METADATA,sha256=TwYlnepXjJ_QMeB8OInsu4_DdWiiAqiMRoVfmItkO_w,2287
563
+ qontract_reconcile-0.9.1rc262.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
564
+ qontract_reconcile-0.9.1rc262.dist-info/entry_points.txt,sha256=aIVvB7OTCxYu0QkONzBPfFEyg68Pr8KUVKEEm4ChDVc,333
565
+ qontract_reconcile-0.9.1rc262.dist-info/top_level.txt,sha256=j0CHPIc8TsVRB50wOz_jhxjjaRyCJB3NOQeXhuHS67c,34
566
+ qontract_reconcile-0.9.1rc262.dist-info/RECORD,,
@@ -132,8 +132,7 @@ class VCS:
132
132
  mr.submit_to_gitlab(gitlab_cli=self._app_interface_api)
133
133
 
134
134
  def cleanup(self) -> None:
135
- for _ in self._gh_per_repo_url.values():
136
- # TODO: gh_client.cleanup()
137
- pass
135
+ for gh_client in self._gh_per_repo_url.values():
136
+ gh_client.cleanup()
138
137
  self._gitlab_instance.cleanup()
139
138
  self._app_interface_api.cleanup()