qontract-reconcile 0.10.1rc865__py3-none-any.whl → 0.10.1rc866__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.
- {qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/RECORD +6 -6
- reconcile/utils/gql.py +1 -1
- {qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: qontract-reconcile
|
3
|
-
Version: 0.10.
|
3
|
+
Version: 0.10.1rc866
|
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
|
{qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/RECORD
RENAMED
@@ -656,7 +656,7 @@ reconcile/utils/git_secrets.py,sha256=0wGNL5mvDtVPRuu3vEQgld1Am64gIDJHtmu1_ZKxMA
|
|
656
656
|
reconcile/utils/github_api.py,sha256=_bttNxYKeam_tLVe27L7O4gKqSn6CeyuFnJn8tSaUVY,2488
|
657
657
|
reconcile/utils/gitlab_api.py,sha256=kGYNyx6pbF43rd6R3a3wcIGmATiqNUFJUUHP4sELgNI,29027
|
658
658
|
reconcile/utils/gpg.py,sha256=EKG7_fdMv8BMlV5yUdPiqoTx-KrzmVSEAl2sLkaKwWI,1123
|
659
|
-
reconcile/utils/gql.py,sha256=
|
659
|
+
reconcile/utils/gql.py,sha256=o8TLe9zW_zf_vOYC4yAy7mP5UvSR4eq3JKa4rxy1KjI,14277
|
660
660
|
reconcile/utils/grouping.py,sha256=kWKivD14eAkiDneH_VIl_XyUdcVVQgiaKA9sLsuD2dw,441
|
661
661
|
reconcile/utils/helm.py,sha256=Rt1ao4yI4GdThZyIPV75JLJjkvu9d8kOLKQht6KUzyE,1325
|
662
662
|
reconcile/utils/helpers.py,sha256=k9svgFFZG7H5FvHYY0g5jJyvgvh2UDZxf0Ib221teag,1179
|
@@ -837,8 +837,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
|
|
837
837
|
tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jrss,4941
|
838
838
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
839
839
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
840
|
-
qontract_reconcile-0.10.
|
841
|
-
qontract_reconcile-0.10.
|
842
|
-
qontract_reconcile-0.10.
|
843
|
-
qontract_reconcile-0.10.
|
844
|
-
qontract_reconcile-0.10.
|
840
|
+
qontract_reconcile-0.10.1rc866.dist-info/METADATA,sha256=CsI337jZEYjkwbikEt0gEukWr3NK-k5bJXpgXcw3xmw,2273
|
841
|
+
qontract_reconcile-0.10.1rc866.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
842
|
+
qontract_reconcile-0.10.1rc866.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
|
843
|
+
qontract_reconcile-0.10.1rc866.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
844
|
+
qontract_reconcile-0.10.1rc866.dist-info/RECORD,,
|
reconcile/utils/gql.py
CHANGED
@@ -122,7 +122,7 @@ class GqlApi:
|
|
122
122
|
self._valid_schemas = integration["schemas"]
|
123
123
|
break
|
124
124
|
|
125
|
-
if not self._valid_schemas:
|
125
|
+
if validate_schemas and not self._valid_schemas:
|
126
126
|
raise GqlApiIntegrationNotFound(int_name)
|
127
127
|
|
128
128
|
def _init_gql_client(self) -> Client:
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc865.dist-info → qontract_reconcile-0.10.1rc866.dist-info}/top_level.txt
RENAMED
File without changes
|