From a5978a20f0b0bfdeacb642436cfc439d29b295bb Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Fri, 17 Oct 2025 10:26:12 -0700 Subject: [PATCH] [router] fix grpc client time out to 1h (#11768) --- sgl-router/src/grpc_client/sglang_scheduler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgl-router/src/grpc_client/sglang_scheduler.rs b/sgl-router/src/grpc_client/sglang_scheduler.rs index 89a169b07..e1d91c842 100644 --- a/sgl-router/src/grpc_client/sglang_scheduler.rs +++ b/sgl-router/src/grpc_client/sglang_scheduler.rs @@ -132,7 +132,7 @@ impl SglangSchedulerClient { }; let channel = Channel::from_shared(http_endpoint)? - .timeout(Duration::from_secs(600)) // 10 minute timeout for connection + .timeout(Duration::from_secs(3600)) // 1 hr timeout for connection .http2_keep_alive_interval(Duration::from_secs(30)) .keep_alive_timeout(Duration::from_secs(10)) .keep_alive_while_idle(true)