qontract-reconcile 0.10.1rc420__py3-none-any.whl → 0.10.1rc422__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.1rc420
3
+ Version: 0.10.1rc422
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
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Requires-Python: >=3.11
14
- Requires-Dist: sretoolbox ~=2.4.2
14
+ Requires-Dist: sretoolbox ~=2.4.3
15
15
  Requires-Dist: Click <9.0,>=7.0
16
16
  Requires-Dist: gql ==3.1.0
17
17
  Requires-Dist: toml <0.11.0,>=0.10.0
@@ -15,7 +15,7 @@ reconcile/dashdotdb_base.py,sha256=NkieQiK1bOlXxmFNHIQ-MOZNPfY1sE1T04yndq0o3gA,4
15
15
  reconcile/dashdotdb_cso.py,sha256=FoXrWGpOwXG5jf0eklN84tjJVUAYzKat7rtq_28JMlQ,3672
16
16
  reconcile/dashdotdb_dora.py,sha256=FINH-8dU3_r8EgUOMiF_fbxD9fKs6LFDxe6rufQ9XcM,17214
17
17
  reconcile/dashdotdb_dvo.py,sha256=YXqpI6fBQAql-ybGI0grj9gWMzmKiAvPE__pNju6obk,8996
18
- reconcile/dashdotdb_slo.py,sha256=9jXMMfxmjY_xlaGJpNpx0LCVEYW-wx10PQBwHdDMa1U,6572
18
+ reconcile/dashdotdb_slo.py,sha256=bf1WSh5JP9obHVQsMy0OO71_VTYZgwAopElFZM6DmRo,6714
19
19
  reconcile/database_access_manager.py,sha256=2I__xR2VzvbF5VdRXCDlFtKZZK7f_-Zmm2BHXaRxc4E,20706
20
20
  reconcile/dynatrace_token_provider.py,sha256=HWItJ_LavPcUJlpYz5fmfnfOpP2-0Qjkar0EAzBJ5Cw,16602
21
21
  reconcile/email_sender.py,sha256=-5L-Ag_jaEYSzYRoMr52KQBRXz1E8yx9GqLbg2X4XFU,3533
@@ -636,8 +636,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=dmEcNwZltP1rd_4DbxIYakO
636
636
  tools/test/test_qontract_cli.py,sha256=awwTHEc2DWlykuqGIYM0WOBoSL0KRnOraCLk3C7izis,1401
637
637
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
638
638
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
639
- qontract_reconcile-0.10.1rc420.dist-info/METADATA,sha256=9bXGq0NbJNFP-CPXC8Tvnw0dWfKuhnJSiflLpRp7XiA,2347
640
- qontract_reconcile-0.10.1rc420.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
641
- qontract_reconcile-0.10.1rc420.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
642
- qontract_reconcile-0.10.1rc420.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
643
- qontract_reconcile-0.10.1rc420.dist-info/RECORD,,
639
+ qontract_reconcile-0.10.1rc422.dist-info/METADATA,sha256=vJVZ-bGb3YzDu1SZbapdhCw2oSZgHpwb2lZgmOYG8SU,2347
640
+ qontract_reconcile-0.10.1rc422.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
641
+ qontract_reconcile-0.10.1rc422.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
642
+ qontract_reconcile-0.10.1rc422.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
643
+ qontract_reconcile-0.10.1rc422.dist-info/RECORD,,
@@ -193,3 +193,7 @@ def run(dry_run: bool = False, thread_pool_size: int = 10) -> None:
193
193
  dry_run=dry_run, thread_pool_size=thread_pool_size, secret_reader=secret_reader
194
194
  )
195
195
  dashdotdb_slo.run()
196
+
197
+
198
+ def early_exit_desired_state(*args: Any, **kwargs: Any) -> dict[str, Any]:
199
+ return {doc.name: doc.dict() for doc in get_slo_documents()}