Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error response #1456

Closed
wants to merge 14 commits into from
Closed

Fix error response #1456

wants to merge 14 commits into from

Conversation

bennavapbc
Copy link
Collaborator

🎫 Ticket

https://jira.cms.gov/browse/AB2D-6579

🛠 Changes

Fix error handling related to the download API so that error messages are displayed to the user. Currently, a blank response is returned to the user.

ℹ️ Context

Currently, the download API fails to return error message to the user. The server sends a blank response and HTTP 500.

For reference, the status API returns a helpful error message if e.g. a job is not found:
image

If an exception is thrown from the status API, the ErrorHandler catches the exception and returns an error response as expected.

If an exception is thrown from the download API, the ErrorHandler does not catch the exception. The exception bubbles up until a ServletException is thrown.

  • The reason for this is not clear. The download and status APIs have similar configuration. The only difference is the download API method accepts a HttpServletResponse response which is written to directly. Spring might exclude methods like this from error handling?

🧪 Validation

Deployed to IMPL and verified the following download scenarios return helpful error messages:

  • Valid job ID but non-existent file
  • Non-existent job ID
  • File downloaded the max number of times

Screenshot 2025-03-25 at 11 39 29 AM

Screenshot 2025-03-25 at 11 39 54 AM

Screenshot 2025-03-25 at 11 42 53 AM

@bennavapbc bennavapbc requested a review from a team as a code owner March 25, 2025 19:16
@bennavapbc
Copy link
Collaborator Author

Instead of merging to main, this code is now part of PR #1440

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants