fix: Update Jira issue search to use the correct JQL endpoint#192
Open
fix: Update Jira issue search to use the correct JQL endpoint#192
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request
📝 Summary
This PR corrects the Jira issue search functionality, which was previously using an incorrect API endpoint. The change updates the service to call the specific
/search/jqlendpoint via a POST request, ensuring that JQL queries are properly executed against the Jira API.🔧 Changes Made
IssueServiceto target the/search/jqlendpoint for issue searches.test_issue_service.pyandtest_jira_network.pyto align with the new endpoint and request method./search/jqlendpoint.🧪 Testing
poetry run pytest)make test)titan-devUnit tests were updated to verify that
make_requestis now called withPOSTand the correct/search/jqlendpoint. The tests also assert that the JQL payload is sent in the JSON body of the request.📊 Logs
✅ Checklist