Skip to content

fix exception: private method set_output' called for #<LiveKit::Egress… #40

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/livekit/egress_service_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def start_room_composite_egress(
audio_only: audio_only,
video_only: video_only,
)
self.set_output(request, output)
set_output(request, output)
self.rpc(
:StartRoomCompositeEgress,
request,
Expand All @@ -66,7 +66,7 @@ def start_participant_egress(
preset: preset,
advanced: advanced,
)
self.set_output(request, output)
set_output(request, output)
self.rpc(
:StartParticipantEgress,
request,
Expand Down Expand Up @@ -94,7 +94,7 @@ def start_track_composite_egress(
audio_track_id: audio_track_id,
video_track_id: video_track_id,
)
self.set_output(request, output)
set_output(request, output)
self.rpc(
:StartTrackCompositeEgress,
request,
Expand Down