Merge pull request #17 from expilu/patch-1

Change deprecated JIRA API endpoint to the current one for JQL
This commit is contained in:
Tim Baek 2026-06-12 10:22:02 -05:00 committed by GitHub
commit bebc3a2b59
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)},
)