Remove unused participantIdentity parameter from updateIngress method in java tutorial

This commit is contained in:
juancarmore 2025-05-29 20:25:00 +02:00
parent fe7468a08c
commit 6ee52442f6

View File

@ -191,10 +191,8 @@ public class IngressController {
}
try {
// Know bug: participantIdentity must be provided in order to not fail,
// but it is not used
IngressInfo ingress = ingressClient
.updateIngress(ingressId, "updated-ingress", roomName, "Ingress-Participant")
.updateIngress(ingressId, "updated-ingress", roomName)
.execute()
.body();
return ResponseEntity.ok(Map.of("ingress", convertToJson(ingress)));