From 829c8b7948a886c58512cb8f94972ce4f8a51710 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Tue, 11 May 2021 16:59:19 +0200 Subject: [PATCH] Fixed buffer not considering all processes running if there is no stream config. --- src/input/input_buffer.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input/input_buffer.cpp b/src/input/input_buffer.cpp index 3f62e7b5..aeb9722d 100644 --- a/src/input/input_buffer.cpp +++ b/src/input/input_buffer.cpp @@ -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*/