From 4a75f107584d27dab9f62dce41be041394f205d1 Mon Sep 17 00:00:00 2001 From: Roy Belio <34023431+r-bit-rry@users.noreply.github.com> Date: Sun, 2 Nov 2025 16:10:52 +0200 Subject: [PATCH] Update src/llama_stack/cli/stack/run.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/llama_stack/cli/stack/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama_stack/cli/stack/run.py b/src/llama_stack/cli/stack/run.py index 4e37e2575..dbf531297 100644 --- a/src/llama_stack/cli/stack/run.py +++ b/src/llama_stack/cli/stack/run.py @@ -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}...")