"Timeout {}s waiting for workers {:?} to become healthy. Please set --router-worker-startup-timeout-secs (sglang_router.launch_server) or --worker-startup-timeout-secs (sglang_worker.router) to a larger value",
timeout_secs,worker_urls
worker_startup_timeout_secs,worker_urls
);
returnErr(format!(
"Timeout {}s waiting for workers {:?} to become healthy. Please set --router-worker-startup-timeout-secs (sglang_router.launch_server) or --worker-startup-timeout-secs (sglang_worker.router) to a larger value",
"Timeout {}s waiting for worker {} to become healthy. Please set --router-worker-startup-timeout-secs (sglang_router.launch_server) or --worker-startup-timeout-secs (sglang_worker.router) to a larger value",
self.timeout_secs,worker_url
self.worker_startup_timeout_secs,worker_url
);
returnErr(format!(
"Timeout {}s waiting for worker {} to become healthy. Please set --router-worker-startup-timeout-secs (sglang_router.launch_server) or --worker-startup-timeout-secs (sglang_worker.router) to a larger value",
self.timeout_secs,worker_url
self.worker_startup_timeout_secs,worker_url
));
}
...
...
@@ -894,7 +907,10 @@ impl Router {
warn!("The worker url {} does not have http or https prefix. Please add the prefix to the url.",worker_url);