We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8547ec commit 3651cfbCopy full SHA for 3651cfb
sgl-router/src/core/workflow/steps/worker_registration.rs
@@ -145,6 +145,7 @@ async fn try_http_health_check(
145
.timeout(Duration::from_secs(timeout_secs))
146
.send()
147
.await
148
+ .and_then(reqwest::Response::error_for_status)
149
.map_err(|e| format!("Health check failed: {}", e))?;
150
151
Ok(())
0 commit comments