Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions python/packages/kagent-adk/src/kagent/adk/models/_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,11 @@ def create_ssl_context(
# Structured logging for TLS configuration at startup
if disable_verify:
logger.warning(
"\n"
"=" * 60 + "\n"
"⚠️ SSL VERIFICATION DISABLED ⚠️\n"
"=" * 60 + "\n"
"\n" + "=" * 60 + "\n"
"⚠️ SSL VERIFICATION DISABLED ⚠️\n" + "=" * 60 + "\n"
"SSL certificate verification is disabled.\n"
"This should ONLY be used in development/testing.\n"
"Production deployments MUST use proper certificates.\n"
"=" * 60
"Production deployments MUST use proper certificates.\n" + "=" * 60
)
logger.info("TLS Mode: Disabled (disable_verify=True)")
return False # httpx accepts False to disable verification
Expand Down
Loading