Merge pull request #55 from ideacrew/180365353-fix-missing-terms #187
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: TT6-186692128
Note: this PR simply cherry picks a single commit from the
me_carrier_boarding
branch that corrects a bug in the logic for interpreting events, which was never resolved on trunk.The problematic scenario occurs when:
Only the coverage_selected and coverage_canceled events are transmitted to Glue. Since transmissions are sent in batches, these events may occur all within a single batch or be split across multiple batches.
The updates to
RemoveSameActionsAndSelectSilent
correct the logic when all events are sent in the same batch, while the updates toEnrollmentEventNotification
correct the logic when the events are spread across multiple batches.Original commit message:
Correct missing terminations and incorrect interpretation of events.