Skip to content

Commit 1374e2c

Browse files
committed
Fix entrypoint
1 parent 92efb5d commit 1374e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/chatbot/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ if [ "$TLS_ENABLED" = "true" ] || [ "$TLS_ENABLED" = "1" ]; then
3030
echo "TLS_KEY: $TLS_KEY"
3131
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} --certfile $TLS_CERTIFICATE --keyfile $TLS_KEY --log-level=debug chatbot_api:app
3232
else:
33-
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} chatbot_api:app
33+
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} --log-level=debug chatbot_api:app
3434
fi

0 commit comments

Comments
 (0)