-
Notifications
You must be signed in to change notification settings - Fork 1
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
Production HSES import fix #236
Conversation
First production deploy
Add Next Steps Page
New Relic deployment records & Production TTA Plan import
Add sorting to My Alerts
This has been pushed to production as a hotfix. |
})); | ||
const grantsForDb = grant.grant_awards.grant_award.map((g) => { | ||
let { grant_start_date: startDate, grant_end_date: endDate } = g; | ||
if (typeof startDate === 'object') { startDate = null; } |
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.
nil dates in the xml end up being { "xsi:nil": true }
here
|
correct |
Description of change
nil
grant start and end datesHow to test
Production data imports successfully. Ryan tested this on GFE with a production dataset.
Issue(s)
Checklist