-
Notifications
You must be signed in to change notification settings - Fork 2
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
[AB2D-6305] - Implement a fix for job cancel polling response #1395
Merged
Rwolfe-Nava
merged 12 commits into
main
from
ab2d-6305-implement-fix-for-job-canceled-polling
Oct 1, 2024
Merged
[AB2D-6305] - Implement a fix for job cancel polling response #1395
Rwolfe-Nava
merged 12 commits into
main
from
ab2d-6305-implement-fix-for-job-canceled-polling
Oct 1, 2024
Conversation
This file contains 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
Rwolfe-Nava
changed the title
[WIP] [AB2D-6305] - Implement a fix for job cancel polling response
[AB2D-6305] - Implement a fix for job cancel polling response
Sep 25, 2024
christopher-maboh
force-pushed
the
ab2d-6305-implement-fix-for-job-canceled-polling
branch
3 times, most recently
from
September 26, 2024 19:17
e3a78bb
to
15a2d84
Compare
Rwolfe-Nava
force-pushed
the
ab2d-6305-implement-fix-for-job-canceled-polling
branch
from
October 1, 2024 14:47
13a0705
to
af84e91
Compare
feralearthman
approved these changes
Oct 1, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Tested in IMPL.
api/src/main/java/gov/cms/ab2d/api/controller/common/StatusCommon.java
Outdated
Show resolved
Hide resolved
Rwolfe-Nava
deleted the
ab2d-6305-implement-fix-for-job-canceled-polling
branch
October 1, 2024 16:44
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.
🎫 Ticket
https://jira.cms.gov/browse/AB2D-6305
🛠 Changes
Added a case to the switch statement in StatusCommon for when a job is in canceled status. (Previously this just went to the default case which was returning a 500 error).
Added a function to get and create a proper response object for when status is canceled as outlined in [FHIR bulk data export guidelines]https://build.fhir.org/ig/HL7/bulk-data/export.html
ℹ️ Context
AB2D fails part of Version 0.10.0 of the Inferno Bulk Data Access Test Kit Specificallly, test 2.3.3.02. We get a failure when requesting the status of a job which has been cancled. The test is looking for a 404 response, but we instead return a 500.
🧪 Validation
To be deployed and tested on IMPL (WIP)