From 35743e10ebffe5e2788514ea6132a597eb6afdad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksa=20Siri=C5=A1ki?= <31509435+aleksasiriski@users.noreply.github.com> Date: Thu, 17 Nov 2022 18:52:12 +0100 Subject: [PATCH] Status command fix When there are processes running on localhost (fallback), can't use status command because it expects servername field which is missing for locahost (fallback) --- rffmpeg | 1 + 1 file changed, 1 insertion(+) diff --git a/rffmpeg b/rffmpeg index e71c752..e06f6be 100755 --- a/rffmpeg +++ b/rffmpeg @@ -608,6 +608,7 @@ def run_control(config): if len(fallback_processes) > 0: host_mappings[0] = { "hostname": "localhost (fallback)", + "servername": "localhost (fallback)", "weight": 0, "current_state": "fallback", "commands": fallback_processes,