Remove unused participantIdentity parameter from updateIngress method in java tutorial
This commit is contained in:
parent
fe7468a08c
commit
6ee52442f6
@ -191,10 +191,8 @@ public class IngressController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Know bug: participantIdentity must be provided in order to not fail,
|
|
||||||
// but it is not used
|
|
||||||
IngressInfo ingress = ingressClient
|
IngressInfo ingress = ingressClient
|
||||||
.updateIngress(ingressId, "updated-ingress", roomName, "Ingress-Participant")
|
.updateIngress(ingressId, "updated-ingress", roomName)
|
||||||
.execute()
|
.execute()
|
||||||
.body();
|
.body();
|
||||||
return ResponseEntity.ok(Map.of("ingress", convertToJson(ingress)));
|
return ResponseEntity.ok(Map.of("ingress", convertToJson(ingress)));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user