Run Python in unbuffered mode

This commit is contained in:
R. Richard 2019-07-02 15:37:12 +02:00
parent 76118c0c49
commit d597e4e004
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
[program:event_handler_main]
user=root
directory=%(ENV_TFW_EHMAIN_DIR)s
command=python3 event_handler_main.py
command=python3 -u event_handler_main.py
[supervisord]
strip_ansi=false

View File

@ -1,4 +1,4 @@
[program:pipe_io_main]
user=root
directory=%(ENV_TFW_EHMAIN_DIR)s
command=python3 pipe_io_main.py
command=python3 -u pipe_io_main.py