Skip to content

Commit

Permalink
fix exception private method set_output' called for #<LiveKit::Egress…
Browse files Browse the repository at this point in the history
…ServiceClient:0x000055f15cca5cf8> :42

fix issue livekit#39 livekit#39
  • Loading branch information
izinko authored Nov 7, 2023
1 parent 500b9d3 commit 45b6ffc
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 45b6ffc

Please sign in to comment.