[router] Fix type unmatch during validation (#12257)

This commit is contained in:
Keyang Ru
2025-10-28 06:04:54 -07:00
committed by GitHub
parent 64cf868eba
commit 9288544180
@@ -204,7 +204,7 @@ impl StepExecutor for ValidateRegistrationStep {
.ok_or_else(|| WorkflowError::ContextValueNotFound("mcp_server_config".to_string()))?;
let client_registered = context
.get::<Arc<RunningService<RoleClient, ()>>>("mcp_client")
.get::<RunningService<RoleClient, ()>>("mcp_client")
.is_some();
if client_registered {