Skip to content

Commit 8d98123

Browse files
committed
update protocol
1 parent 13095e8 commit 8d98123

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

cmd/livekit-cli/egress.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var (
5454
},
5555
{
5656
Name: "update-layout",
57-
Usage: "Updates layout for a live web composite egress",
57+
Usage: "Updates layout for a live room composite egress",
5858
Before: createEgressClient,
5959
Action: updateLayout,
6060
Category: egressCategory,
@@ -145,7 +145,7 @@ func startEgress(c *cli.Context) error {
145145
if err != nil {
146146
return err
147147
}
148-
req := &livekit.WebCompositeEgressRequest{}
148+
req := &livekit.RoomCompositeEgressRequest{}
149149
err = protojson.Unmarshal(reqBytes, req)
150150
if err != nil {
151151
return err
@@ -155,7 +155,7 @@ func startEgress(c *cli.Context) error {
155155
PrintJSON(req)
156156
}
157157

158-
res, err := egressClient.StartWebCompositeEgress(context.Background(), req)
158+
res, err := egressClient.StartRoomCompositeEgress(context.Background(), req)
159159
if err != nil {
160160
return err
161161
}

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
github.com/ggwhite/go-masker v1.0.4
77
github.com/go-logr/logr v1.2.0
88
github.com/go-logr/stdr v1.2.0
9-
github.com/livekit/protocol v0.12.0
10-
github.com/livekit/server-sdk-go v0.9.2
9+
github.com/livekit/protocol v0.13.0
10+
github.com/livekit/server-sdk-go v0.9.3
1111
github.com/pion/rtp v1.7.4
1212
github.com/pion/webrtc/v3 v3.1.25-0.20220225075517-37e16a3b15a3
1313
github.com/pkg/errors v0.9.1

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
117117
github.com/lithammer/shortuuid/v3 v3.0.6/go.mod h1:vMk8ke37EmiewwolSO1NLW8vP4ZaKlRuDIi8tWWmAts=
118118
github.com/lithammer/shortuuid/v3 v3.0.7 h1:trX0KTHy4Pbwo/6ia8fscyHoGA+mf1jWbPJVuvyJQQ8=
119119
github.com/lithammer/shortuuid/v3 v3.0.7/go.mod h1:vMk8ke37EmiewwolSO1NLW8vP4ZaKlRuDIi8tWWmAts=
120-
github.com/livekit/protocol v0.12.0 h1:TOSaBJWIvgvS8bI2HGRG9IGzYAoeBp6D9nZrtVMMvEg=
121-
github.com/livekit/protocol v0.12.0/go.mod h1:3pHsWUtQmWaH8mG0cXrQWpbf3Vo+kj0U+In77CEXu90=
122-
github.com/livekit/server-sdk-go v0.9.2 h1:rGnyKHcKq1fT2dq5GPEmWoYx7Fst9yJ8ATL2oy4C1Tg=
123-
github.com/livekit/server-sdk-go v0.9.2/go.mod h1:6icKnXt4eihxkgCeqeecPUjLfBuFyqWvFgK7bDHTOsE=
120+
github.com/livekit/protocol v0.13.0 h1:AdXMeUzdHeJaqBl/EBO2jwaSLNmtW95LSuNeymBuP2c=
121+
github.com/livekit/protocol v0.13.0/go.mod h1:3pHsWUtQmWaH8mG0cXrQWpbf3Vo+kj0U+In77CEXu90=
122+
github.com/livekit/server-sdk-go v0.9.3 h1:7WnkkT6TMGh5+R2Jf9PvGjTW+6OP0ZJ+0ZaXgsqp4zg=
123+
github.com/livekit/server-sdk-go v0.9.3/go.mod h1:MTPcb90tn9IvJY9dJofZo0OqCLndV8lXssgPEKMgb7Q=
124124
github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=
125125
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
126126
github.com/maxbrunsfeld/counterfeiter/v6 v6.3.0/go.mod h1:fcEyUyXZXoV4Abw8DX0t7wyL8mCDxXyU4iAFZfT3IHw=

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package livekit_cli
22

33
const (
4-
Version = "0.7.1"
4+
Version = "0.7.2"
55
)

0 commit comments

Comments
 (0)