Skip to content

Commit 5391944

Browse files
Add feature flags to GetIngressInfoResponse (#1218)
--------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7ca55b4 commit 5391944

File tree

7 files changed

+316
-275
lines changed

7 files changed

+316
-275
lines changed

.changeset/gold-buttons-retire.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@livekit/protocol": patch
3+
---
4+
5+
Add feature flags to GetIngressInfoResponse

protobufs/rpc/ingress.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ message StartIngressRequest {
102102
livekit.IngressInfo info = 1;
103103
string token = 2;
104104
string ws_url = 3;
105-
map<string,string> logging_fields = 4;
105+
map<string, string> logging_fields = 4;
106+
map<string, string> feature_flags = 5;
106107
}
107108

108109
message IngressSession {

protobufs/rpc/io.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ message GetIngressInfoResponse {
6565
livekit.IngressInfo info = 1;
6666
string token = 2;
6767
string ws_url = 3;
68-
map<string,string> logging_fields = 4;
68+
map<string, string> logging_fields = 4;
69+
map<string, string> feature_flags = 5;
6970
}
7071

7172
// Request to store an update to the ingress state ingress -> service

rpc/ingress.pb.go

Lines changed: 46 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/ingress.psrpc.go

Lines changed: 58 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)