-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add additional Contention Classification database table columns #2187
Conversation
…sing values from kafka generic record
contentionEventEntity.setDateCompleted(convertTime(bieMessagePayload.getDateCompleted())); | ||
contentionEventEntity.setDateUpdated(convertTime(bieMessagePayload.getDateUpdated())); | ||
contentionEventEntity.setActorStation(bieMessagePayload.getActorStation()); | ||
contentionEventEntity.setAutomationIndicator(bieMessagePayload.getAutomationIndicator()); |
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.
Can we not chain these set statements? that is
contentionEventEntity.setOccurredAt(...) .setDateAdded(...) . . .
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.
LGTM w/ passing linter and one q
…ffairs/abd-vro into chengjie8/issue-2085
…ffairs/abd-vro into chengjie8/issue-2085
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.
LGTM!
What was the problem?
We need to store additional data that were not being captured before.
Associated tickets or Slack threads:
How does this fix it?1
BieMessagePayload
object using java reflectionHow to test this PR
svc-bie-kafka
serviceFootnotes
Pull-Requests guidelines. If PR is significant, update Current Software State wiki page. ↩