Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/gold-buttons-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/protocol": patch
---

Add feature flags to GetIngressInfoResponse
3 changes: 2 additions & 1 deletion protobufs/rpc/ingress.proto
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ message StartIngressRequest {
livekit.IngressInfo info = 1;
string token = 2;
string ws_url = 3;
map<string,string> logging_fields = 4;
map<string, string> logging_fields = 4;
map<string, string> feature_flags = 5;
}

message IngressSession {
Expand Down
3 changes: 2 additions & 1 deletion protobufs/rpc/io.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ message GetIngressInfoResponse {
livekit.IngressInfo info = 1;
string token = 2;
string ws_url = 3;
map<string,string> logging_fields = 4;
map<string, string> logging_fields = 4;
map<string, string> feature_flags = 5;
}

// Request to store an update to the ingress state ingress -> service
Expand Down
78 changes: 46 additions & 32 deletions rpc/ingress.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

113 changes: 58 additions & 55 deletions rpc/ingress.psrpc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading