Support SSL Key Rotation in HTTP Server (#13495)

This commit is contained in:
Keyun Tong
2025-02-22 05:17:44 -08:00
committed by GitHub
parent 2382ad29d1
commit 8db1b9d0a1
7 changed files with 173 additions and 2 deletions

View File

@@ -960,6 +960,7 @@ async def run_server(args, **uvicorn_kwargs) -> None:
shutdown_task = await serve_http(
app,
sock=sock,
enable_ssl_refresh=args.enable_ssl_refresh,
host=args.host,
port=args.port,
log_level=args.uvicorn_log_level,