mirror of https://github.com/OpenVidu/openvidu.git
openvidu-test-e2e: fix media server reconnect tests to allow other Docker images
parent
98fbe060a3
commit
8d7b2abe4f
|
@ -576,10 +576,10 @@ public class OpenViduTestE2e {
|
||||||
String grep = null;
|
String grep = null;
|
||||||
if (MEDIA_SERVER_IMAGE.startsWith(KURENTO_IMAGE)) {
|
if (MEDIA_SERVER_IMAGE.startsWith(KURENTO_IMAGE)) {
|
||||||
log.info("Stopping kurento");
|
log.info("Stopping kurento");
|
||||||
grep = KURENTO_IMAGE + ":";
|
grep = KURENTO_IMAGE;
|
||||||
} else if (MEDIA_SERVER_IMAGE.startsWith(MEDIASOUP_IMAGE)) {
|
} else if (MEDIA_SERVER_IMAGE.startsWith(MEDIASOUP_IMAGE)) {
|
||||||
log.info("Stopping mediasoup");
|
log.info("Stopping mediasoup");
|
||||||
grep = MEDIASOUP_IMAGE + ":";
|
grep = MEDIASOUP_IMAGE;
|
||||||
} else {
|
} else {
|
||||||
log.error("Unrecognized MEDIA_SERVER_IMAGE: {}", MEDIA_SERVER_IMAGE);
|
log.error("Unrecognized MEDIA_SERVER_IMAGE: {}", MEDIA_SERVER_IMAGE);
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
|
|
Loading…
Reference in New Issue