Change JIRA API endpoint to use JQL

/rest/api/3/search was deprecated, changes to the current /rest/api/3/search/jql
This commit is contained in:
Daniel López Lacalle 2026-06-03 12:21:03 +01:00 committed by GitHub
parent dcf241da7f
commit fb7c13ec6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,7 +71,7 @@ class JiraConnector(BaseConnector):
break
resp = self._http.get(
"/rest/api/3/search",
"/rest/api/3/search/jql",
params={"jql": self._jql, "startAt": start, "maxResults": max_results,
"fields": ",".join(api_fields)},
)