From e81e4a755aabe69518f1f282860f6ea035d9f323 Mon Sep 17 00:00:00 2001 From: Kamoltat Sirivadhna Date: Tue, 30 Jan 2024 14:54:58 -0500 Subject: [PATCH] Make TEUTHOLOGY_API_SERVER_PORT = 8082 Signed-off-by: Kamoltat Sirivadhna --- gunicorn_config.py | 2 +- start_container.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index a23e7a9..aadebd2 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -3,7 +3,7 @@ host = os.environ.get('TEUTHOLOGY_API_SERVER_HOST', '0.0.0.0') -port = os.environ.get('TEUTHOLOGY_API_SERVER_PORT', '8080') +port = os.environ.get('TEUTHOLOGY_API_SERVER_PORT', '8082') bind = f'{host}:{port}' workers = cpu_count() diff --git a/start_container.sh b/start_container.sh index 1dbb424..22223aa 100644 --- a/start_container.sh +++ b/start_container.sh @@ -3,7 +3,7 @@ set -ex trap exit TERM HOST=${TEUTHOLOGY_API_SERVER_HOST:-"0.0.0.0"} -PORT=${TEUTHOLOGY_API_SERVER_PORT:-"8080"} +PORT=${TEUTHOLOGY_API_SERVER_PORT:-"8082"} cd /teuthology_api/src/