From d6439016976578feb529c2a6c15546a8e50f38c6 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Tue, 21 May 2019 13:42:34 +0200 Subject: [PATCH] Fix syntax --- supervisord.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/supervisord.conf b/supervisord.conf index c567309..bd3b50b 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -131,13 +131,13 @@ stdout_logfile=logs/%(program_name)s.out.log stderr_logfile=logs/%(program_name)s.err.log [program:msg_dumper] -command=python scripts/msg_dumper.py -l 127.0.0.1 -p $(ENV_MONITORING_LIGIER_PORT)s -f logs/MSG.log +command=python scripts/msg_dumper.py -l 127.0.0.1 -p %(ENV_MONITORING_LIGIER_PORT)s -f logs/MSG.log priority=200 stdout_logfile=logs/%(program_name)s.out.log stderr_logfile=logs/%(program_name)s.err.log [program:weblog] -command=frontail logs/*.log --ui-highlight --ui-highlight-preset frontail.json --theme dark -l 10000 -n n 200 -p $(ENV_LOGGING_PORT)s +command=frontail logs/*.log --ui-highlight --ui-highlight-preset frontail.json --theme dark -l 10000 -n n 200 -p %(ENV_LOGGING_PORT)s priority=210 stdout_logfile=logs/%(program_name)s.out.log stderr_logfile=logs/%(program_name)s.err.log -- GitLab