From 24151bca0b0918b544b43a7af02e0ffbd9b8b5eb Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Sat, 11 Jul 2026 17:40:58 +0200 Subject: [PATCH] openvidu-test-e2e: update container bluenviron/mediamtx (for RTSP tests) from 1.17.1-ffmpeg to 1.19.2-ffmpeg --- .../src/main/java/io/openvidu/test/e2e/OpenViduTestE2e.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvidu-test-e2e/src/main/java/io/openvidu/test/e2e/OpenViduTestE2e.java b/openvidu-test-e2e/src/main/java/io/openvidu/test/e2e/OpenViduTestE2e.java index cd21abebe..9f8b7cbd2 100644 --- a/openvidu-test-e2e/src/main/java/io/openvidu/test/e2e/OpenViduTestE2e.java +++ b/openvidu-test-e2e/src/main/java/io/openvidu/test/e2e/OpenViduTestE2e.java @@ -54,7 +54,7 @@ public class OpenViduTestE2e { private final static WaitStrategy waitBrowser = Wait.forLogMessage("^.*Started Selenium Standalone.*$", 1); - protected static String RTSP_SERVER_IMAGE = "bluenviron/mediamtx:1.17.1-ffmpeg"; + protected static String RTSP_SERVER_IMAGE = "bluenviron/mediamtx:1.19.2-ffmpeg"; protected static int RTSP_SRT_PORT = 8554; // Key is the common name of the video codec. It must match the output log of @@ -286,7 +286,7 @@ public class OpenViduTestE2e { "MTX_HLS", "no", "MTX_RTSP", "yes", "MTX_WEBRTC", "no", "MTX_SRT", "no", "MTX_RTMP", "no", "MTX_API", "no")) .withNetworkMode("host") - .waitingFor(Wait.forLogMessage("^.*\\[RTSP\\] listener opened on :" + rtspPort + ".*$", 1)); + .waitingFor(Wait.forLogMessage("^.*\\[RTSP\\] started with listeners on :" + rtspPort + ".*$", 1)); rtspServerContainer.start(); containers.add(rtspServerContainer);