From 453a5ac1d0ad93ee16489854cebda49b7d2ebbf3 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 18 Aug 2023 20:57:11 -0400 Subject: [PATCH] run python unbuffered so output shows up in docker logs --- webui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.sh b/webui.sh index cb8b9d14d..781aa734e 100755 --- a/webui.sh +++ b/webui.sh @@ -245,7 +245,7 @@ while [[ "$KEEP_GOING" -eq "1" ]]; do printf "Launching launch.py..." printf "\n%s\n" "${delimiter}" prepare_tcmalloc - "${python_cmd}" "${LAUNCH_SCRIPT}" "$@" + "${python_cmd}" -u "${LAUNCH_SCRIPT}" "$@" fi if [[ ! -f tmp/restart ]]; then