fix: remove debug print accidentally merged (#2393)

I accidentally left a debug print in a PR that was merged. This removes
that.
This commit is contained in:
grs 2025-06-04 09:14:14 -04:00 committed by GitHub
parent e9d9f01b8b
commit 0de9536717
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}")