openvidu-server: final media-server to media-node touches

pull/370/head
pabloFuente 2019-10-11 13:12:16 +02:00
parent b1608d26c2
commit 7224ac8968
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ public class KurentoSessionManager extends SessionManager {
this.cleanCollections(sessionId);
this.storeSessionNotActive(sessionNotActive);
throw new OpenViduException(Code.ROOM_CANNOT_BE_CREATED_ERROR_CODE,
"There is no available media server where to initialize session '" + sessionId + "'");
"There is no available Media Node where to initialize session '" + sessionId + "'");
}
log.info("KMS less loaded is {} with a load of {}", lessLoadedKms.getUri(), lessLoadedKms.getLoad());
kSession = createSession(sessionNotActive, lessLoadedKms);

View File

@ -64,7 +64,7 @@ public class MultimediaFileMetadata {
this.formatJson = json.get("format").getAsJsonObject();
if (formatJson.get("duration") == null) {
// Webm file has not been properly closed (i.e. media server stopped)
// Webm file has not been properly closed (i.e. Media Node stopped)
this.fixWebmFile(fileAbsolutePath);
this.json = this.executeFfprobeCommand(fileAbsolutePath);
this.formatJson = json.get("format").getAsJsonObject();