-
Notifications
You must be signed in to change notification settings - Fork 233
fix: Fail connectivity checks for non-keep-alive pairs #304
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: Fail connectivity checks for non-keep-alive pairs #304
Conversation
This covers a case that was missed in jitsi#287. When multiple pairs are SUCCEEDED before we reach the TERMINATED state, we keep responding to them.
|
Checkstyle failure, otherwise looks good. |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #304 +/- ##
============================================
- Coverage 36.12% 35.82% -0.30%
+ Complexity 1124 1119 -5
============================================
Files 166 166
Lines 10989 10958 -31
Branches 1614 1618 +4
============================================
- Hits 3970 3926 -44
- Misses 6490 6498 +8
- Partials 529 534 +5
... and 11 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
| // After we've terminated, only respond for the selected pair | ||
| CandidatePair selected = getSelectedPair(knownPair.getParentComponent().getParentStream().getName()); | ||
| CandidatePair selected | ||
| = getSelectedPair(knownPair.getParentComponent().getParentStream().getName()); |
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.
Tiny quibble, but shouldn't the equals sign go before the line break?
* Update github action versions (jitsi/ice4j#301) * Update publishing to Maven central. (jitsi/ice4j#303) * log: Move verbose logs from INFO to DEBUG. (jitsi/ice4j#300) * fix: Fail connectivity checks for non-keep-alive pairs (jitsi/ice4j#304) * feat: Option to send to the last received from address. (jitsi/ice4j#305)
This covers a case that was missed in #287. When multiple pairs
are SUCCEEDED before we reach the TERMINATED state, we keep responding
to them.