-
Notifications
You must be signed in to change notification settings - Fork 298
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
Transcribing backend flag #519
Conversation
When backend enabled, even if no one is listening for transcriptions we keep going.
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #519 +/- ##
============================================
- Coverage 20.86% 20.85% -0.02%
- Complexity 289 291 +2
============================================
Files 74 74
Lines 6222 6278 +56
Branches 833 837 +4
============================================
+ Hits 1298 1309 +11
- Misses 4699 4749 +50
+ Partials 225 220 -5
... and 3 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
String avModerationAddress = avIdentity.getName(); | ||
this.getAudioModeration().setAvModerationAddress(avModerationAddress); | ||
|
||
logger.info(String.format("%s Discovered %s for %oms.", |
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.
Do we really care about this message only for avModarationAddress
? I suggest either remove it or move it out of the "if" to be printed right after the discoverInfo
call
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.
I'll remove that and move the print after, I just kept it when moving the stuff.
// we process room metadata messages only when we are transcribing | ||
if (roomMetadataIdentity != null && this.gatewaySession instanceof TranscriptionGatewaySession) | ||
{ | ||
if (roomMetadataListener != 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.
Any reason not to make the field final
and always initialize it? You can remove these 5 lines of code and not worry about this executing after a re-connect for example
private void maybeStopTranscription() | ||
{ | ||
if (transcriber.isTranscribing() | ||
&& !(transcriber.isAnyParticipantRequestingTranscription() |
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.
nit: suggest to extract a isTranscriptionRequested()
method
No description provided.