openvidu-test-e2e: fix media server reconnect tests to allow other Docker images

pull/713/head
pabloFuente 2022-03-31 12:31:06 +02:00
parent 98fbe060a3
commit 8d7b2abe4f
1 changed files with 2 additions and 2 deletions

View File

@ -576,10 +576,10 @@ public class OpenViduTestE2e {
String grep = null;
if (MEDIA_SERVER_IMAGE.startsWith(KURENTO_IMAGE)) {
log.info("Stopping kurento");
grep = KURENTO_IMAGE + ":";
grep = KURENTO_IMAGE;
} else if (MEDIA_SERVER_IMAGE.startsWith(MEDIASOUP_IMAGE)) {
log.info("Stopping mediasoup");
grep = MEDIASOUP_IMAGE + ":";
grep = MEDIASOUP_IMAGE;
} else {
log.error("Unrecognized MEDIA_SERVER_IMAGE: {}", MEDIA_SERVER_IMAGE);
System.exit(1);