From 9288544180f75062881ff9ac3216a6ad7dcce45b Mon Sep 17 00:00:00 2001 From: Keyang Ru Date: Tue, 28 Oct 2025 06:04:54 -0700 Subject: [PATCH] [router] Fix type unmatch during validation (#12257) --- sgl-router/src/core/workflow/steps/mcp_registration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgl-router/src/core/workflow/steps/mcp_registration.rs b/sgl-router/src/core/workflow/steps/mcp_registration.rs index 516749159..94fbdd100 100644 --- a/sgl-router/src/core/workflow/steps/mcp_registration.rs +++ b/sgl-router/src/core/workflow/steps/mcp_registration.rs @@ -204,7 +204,7 @@ impl StepExecutor for ValidateRegistrationStep { .ok_or_else(|| WorkflowError::ContextValueNotFound("mcp_server_config".to_string()))?; let client_registered = context - .get::>>("mcp_client") + .get::>("mcp_client") .is_some(); if client_registered {