Update src/llama_stack/cli/stack/run.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Roy Belio 2025-11-02 16:10:52 +02:00 committed by GitHub
parent a8bc99408c
commit 4a75f10758
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -278,7 +278,7 @@ class StackRun(Subcommand):
gunicorn_command.extend(["--ca-certs", uvicorn_config["ssl_ca_certs"]])
# Add the application
gunicorn_command.append("llama_stack.core.server.server:create_app()")
gunicorn_command.append("llama_stack.core.server.server:create_app")
# Log comprehensive configuration
logger.info(f"Starting Gunicorn server with {num_workers} workers on {bind_address}...")