From d4a7752c899df51d7e174161932d5c26349e28e4 Mon Sep 17 00:00:00 2001 From: Devin Gaffney Date: Tue, 19 Nov 2024 07:43:18 -0800 Subject: [PATCH] CV2-5709 readd http server --- start_all.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/start_all.sh b/start_all.sh index 9824549..6d51d5a 100755 --- a/start_all.sh +++ b/start_all.sh @@ -1,9 +1,5 @@ #!/bin/sh - -if [ "$ROLE" != "worker" ]; then - # Start the HTTP server process in the background if not a worker - uvicorn main:app --host 0.0.0.0 --port ${PRESTO_PORT} --reload & -fi +uvicorn main:app --host 0.0.0.0 --port ${PRESTO_PORT} --reload & if [ "$ROLE" = "worker" ]; then # Start worker processes