diff --git a/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java b/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java index 331a8524..d0c3ce9b 100644 --- a/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java +++ b/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java @@ -1916,6 +1916,7 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest { @Test @DisplayName("RTSP ingress AAC") + @Disabled // Audio ingress is flaky, only works if the ingress inmediately connects to the RTSP server void rtspIngressAACTest() throws Exception { log.info("RTSP ingress AAC"); String rtspUri = startRtspServer(null, "AAC"); @@ -1924,6 +1925,7 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest { @Test @DisplayName("RTSP ingress MP3") + @Disabled // Audio ingress is flaky, only works if the ingress inmediately connects to the RTSP server void rtspIngressMP3Test() throws Exception { log.info("RTSP ingress MP3"); String rtspUri = startRtspServer(null, "MP3"); @@ -1932,6 +1934,7 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest { @Test @DisplayName("RTSP ingress OPUS") + @Disabled // Audio ingress is flaky, only works if the ingress inmediately connects to the RTSP server void rtspIngressOPUSTest() throws Exception { log.info("RTSP ingress OPUS"); String rtspUri = startRtspServer(null, "OPUS"); @@ -1940,6 +1943,7 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest { @Test @DisplayName("RTSP ingress G711") + @Disabled // Audio ingress is flaky, only works if the ingress inmediately connects to the RTSP server void rtspIngressG711Test() throws Exception { log.info("RTSP ingress G711"); String rtspUri = startRtspServer(null, "G711");