qontract-reconcile 0.10.1rc532__py3-none-any.whl → 0.10.1rc533__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.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/METADATA +1 -1
- {qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/RECORD +6 -6
- reconcile/utils/gitlab_api.py +1 -0
- {qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/WHEEL +0 -0
- {qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/entry_points.txt +0 -0
- {qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/top_level.txt +0 -0
{qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.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.1rc533
|
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.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/RECORD
RENAMED
@@ -534,7 +534,7 @@ reconcile/utils/filtering.py,sha256=zZnHH0u0SaTDyzuFXZ_mREURGLvjEqQIQy4z-7QBVlc,
|
|
534
534
|
reconcile/utils/git.py,sha256=Qad7mfPuS9s7eKODeWSewehwSGgJPCbQuLda1qg_6GA,1522
|
535
535
|
reconcile/utils/git_secrets.py,sha256=0wGNL5mvDtVPRuu3vEQgld1Am64gIDJHtmu1_ZKxMAI,1973
|
536
536
|
reconcile/utils/github_api.py,sha256=_bttNxYKeam_tLVe27L7O4gKqSn6CeyuFnJn8tSaUVY,2488
|
537
|
-
reconcile/utils/gitlab_api.py,sha256=
|
537
|
+
reconcile/utils/gitlab_api.py,sha256=UMqWIHR_GkxEn5lgvxHLrjcwprRvRuKowxkwvu1xvvM,27241
|
538
538
|
reconcile/utils/gpg.py,sha256=EKG7_fdMv8BMlV5yUdPiqoTx-KrzmVSEAl2sLkaKwWI,1123
|
539
539
|
reconcile/utils/gql.py,sha256=bzIYYYYGIO_4Db4sA-mnZUOPVNBELZD5EcIUSTbYG1o,13604
|
540
540
|
reconcile/utils/grouping.py,sha256=kWKivD14eAkiDneH_VIl_XyUdcVVQgiaKA9sLsuD2dw,441
|
@@ -667,8 +667,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
|
|
667
667
|
tools/test/test_qontract_cli.py,sha256=d18KrdhtUGqoC7_kWZU128U0-VJEj-0rjFkLVufcI6I,2755
|
668
668
|
tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
|
669
669
|
tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
|
670
|
-
qontract_reconcile-0.10.
|
671
|
-
qontract_reconcile-0.10.
|
672
|
-
qontract_reconcile-0.10.
|
673
|
-
qontract_reconcile-0.10.
|
674
|
-
qontract_reconcile-0.10.
|
670
|
+
qontract_reconcile-0.10.1rc533.dist-info/METADATA,sha256=phMhK1hKQCVRYHL2fDJ3dk6J0nK58PsNGGBQUfStFdc,2349
|
671
|
+
qontract_reconcile-0.10.1rc533.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
672
|
+
qontract_reconcile-0.10.1rc533.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
|
673
|
+
qontract_reconcile-0.10.1rc533.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
|
674
|
+
qontract_reconcile-0.10.1rc533.dist-info/RECORD,,
|
reconcile/utils/gitlab_api.py
CHANGED
@@ -453,6 +453,7 @@ class GitLabApi: # pylint: disable=too-many-public-methods
|
|
453
453
|
if c["username"] == self.user.username and body.startswith(startswith):
|
454
454
|
self.delete_comment(c["note"])
|
455
455
|
|
456
|
+
@retry()
|
456
457
|
def get_project_labels(self) -> Set[str]:
|
457
458
|
return {ln.name for ln in self.get_items(self.project.labels.list)}
|
458
459
|
|
File without changes
|
File without changes
|
{qontract_reconcile-0.10.1rc532.dist-info → qontract_reconcile-0.10.1rc533.dist-info}/top_level.txt
RENAMED
File without changes
|