From 0de953671715dbe5956886620389116ee29e6a6a Mon Sep 17 00:00:00 2001 From: grs Date: Wed, 4 Jun 2025 09:14:14 -0400 Subject: [PATCH] fix: remove debug print accidentally merged (#2393) I accidentally left a debug print in a PR that was merged. This removes that. --- llama_stack/distribution/server/auth_providers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/llama_stack/distribution/server/auth_providers.py b/llama_stack/distribution/server/auth_providers.py index 7cb038494..942ff8a18 100644 --- a/llama_stack/distribution/server/auth_providers.py +++ b/llama_stack/distribution/server/auth_providers.py @@ -305,7 +305,6 @@ class CustomAuthProvider(AuthProvider): json=auth_request.model_dump(), timeout=10.0, # Add a reasonable timeout ) - print("MADE CALL") if response.status_code != 200: logger.warning(f"Authentication failed with status code: {response.status_code}") raise ValueError(f"Authentication failed: {response.status_code}")