1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-11-14 22:07:17 +00:00

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] [program:event_handler_main]
user=root user=root
directory=%(ENV_TFW_EHMAIN_DIR)s directory=%(ENV_TFW_EHMAIN_DIR)s
command=python3 event_handler_main.py command=python3 -u event_handler_main.py
[supervisord] [supervisord]
strip_ansi=false strip_ansi=false

View File

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