Skip to content

Commit

Permalink
Merge pull request #45 from kamoltat/wip-ksirivad-fix-port
Browse files Browse the repository at this point in the history
Make TEUTHOLOGY_API_SERVER_PORT = 8082
  • Loading branch information
kamoltat authored Feb 1, 2024
2 parents 9af7fb0 + e81e4a7 commit 6b20fd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gunicorn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion start_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 6b20fd2

Please sign in to comment.