qontract-reconcile 0.10.1rc899__py3-none-any.whl → 0.10.1rc900__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.1rc899
3
+ Version: 0.10.1rc900
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
@@ -666,7 +666,7 @@ reconcile/utils/helpers.py,sha256=k9svgFFZG7H5FvHYY0g5jJyvgvh2UDZxf0Ib221teag,11
666
666
  reconcile/utils/imap_client.py,sha256=PMsX8UjJ2F59fXbbqREjLVdapYWznYTB8svFmpt39qA,1949
667
667
  reconcile/utils/instrumented_wrappers.py,sha256=eVwMoa6FCrYxLv3RML3WpZF9qKVfCTjMxphgVXG03OM,1073
668
668
  reconcile/utils/jenkins_api.py,sha256=RaKuZmO7_lbI-hE6c_Pq2a6CQdmBVj7BcP2jR68cIbI,7081
669
- reconcile/utils/jira_client.py,sha256=lNqqjlqQQDjbZwaeSj47T6mGarX_SUdjE_7KKwcTPbQ,7644
669
+ reconcile/utils/jira_client.py,sha256=VdWJfI9VAK2ZtYHmvuqL635t0S5eYtmBY6zR8R-qr-s,7775
670
670
  reconcile/utils/jjb_client.py,sha256=crbNkZocYTPBTEindscfLjaI7pi-91Tn7HVhkE6tF9E,14424
671
671
  reconcile/utils/jsonpath.py,sha256=wdxOMqR-GMpQf5vRPWRMqAF7bCiXDBkkcFfY2U4j_tk,5536
672
672
  reconcile/utils/jump_host.py,sha256=W3w0S-Qa-VLK5JGg-G4f2a4_5GA34KZVV3XNAaI53Y4,5148
@@ -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.1rc899.dist-info/METADATA,sha256=7CJ9adlmsE4h9lgftGf26kORoj0ADEH_t14mjUg9P6M,2273
848
- qontract_reconcile-0.10.1rc899.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
- qontract_reconcile-0.10.1rc899.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
- qontract_reconcile-0.10.1rc899.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
- qontract_reconcile-0.10.1rc899.dist-info/RECORD,,
847
+ qontract_reconcile-0.10.1rc900.dist-info/METADATA,sha256=SoW0nnbOZ_8OcmOORa7MDS0ADopOm48NgSuuxPlINHk,2273
848
+ qontract_reconcile-0.10.1rc900.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
+ qontract_reconcile-0.10.1rc900.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
+ qontract_reconcile-0.10.1rc900.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
+ qontract_reconcile-0.10.1rc900.dist-info/RECORD,,
@@ -105,7 +105,10 @@ class JiraClient:
105
105
  raise RuntimeError("JiraClient.server is not set.")
106
106
 
107
107
  self.jira = JIRA(
108
- self.server, token_auth=token_auth, timeout=(read_timeout, connect_timeout)
108
+ self.server,
109
+ token_auth=token_auth,
110
+ timeout=(read_timeout, connect_timeout),
111
+ logging=False,
109
112
  )
110
113
 
111
114
  @staticmethod
@@ -121,7 +124,10 @@ class JiraClient:
121
124
  read_timeout = jira_watcher_settings.read_timeout
122
125
  connect_timeout = jira_watcher_settings.connect_timeout
123
126
  jira_api = JIRA(
124
- server=server_url, token_auth=token, timeout=(read_timeout, connect_timeout)
127
+ server=server_url,
128
+ token_auth=token,
129
+ timeout=(read_timeout, connect_timeout),
130
+ logging=False,
125
131
  )
126
132
  return JiraClient(
127
133
  jira_api=jira_api,
@@ -228,6 +234,7 @@ class JiraClient:
228
234
  JiraClient.DEFAULT_READ_TIMEOUT,
229
235
  JiraClient.DEFAULT_CONNECT_TIMEOUT,
230
236
  ),
237
+ logging=False,
231
238
  )
232
239
  return [project.key for project in jira_api_anon.projects()]
233
240