Fixed buffer not considering all processes running if there is no stream config.
This commit is contained in:
parent
ad9e72798a
commit
829c8b7948
1 changed files with 3 additions and 0 deletions
|
@ -530,6 +530,9 @@ namespace Mist{
|
||||||
if (streamCfg){
|
if (streamCfg){
|
||||||
JSON::Value configuredProcesses = streamCfg.getMember("processes").asJSON();
|
JSON::Value configuredProcesses = streamCfg.getMember("processes").asJSON();
|
||||||
checkProcesses(configuredProcesses);
|
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*/
|
/*LTS-END*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue