Skip to content

Commit 5322d14

Browse files
committedApr 29, 2024
Fix entrypoint.sh
1 parent f54777b commit 5322d14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎services/chatbot/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ if [ "$TLS_ENABLED" = "true" ] || [ "$TLS_ENABLED" = "1" ]; then
2929
echo "TLS_CERTIFICATE: $TLS_CERTIFICATE"
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
32-
else:
32+
else
3333
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} --log-level=debug chatbot_api:app
3434
fi

0 commit comments

Comments
 (0)
Failed to load comments.