Fixed buffer not considering all processes running if there is no stream config.

This commit is contained in:
Thulinma 2021-05-11 16:59:19 +02:00
parent ad9e72798a
commit 829c8b7948

View file

@ -530,6 +530,9 @@ namespace Mist{
if (streamCfg){
JSON::Value configuredProcesses = streamCfg.getMember("processes").asJSON();
checkProcesses(configuredProcesses);
}else{
//If there is no config, we assume all processes are running, since, well, there can't be any
allProcsRunning = true;
}
}
/*LTS-END*/