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 da8a72d commit d55f7ecCopy full SHA for d55f7ec
pkg/vmcp/server/server.go
@@ -312,6 +312,13 @@ func New(
312
return
313
}
314
315
+ // Validate that routing table exists
316
+ if caps.RoutingTable == nil {
317
+ logger.Warnw("routing table is nil in discovered capabilities",
318
+ "session_id", sessionID)
319
+ return
320
+ }
321
+
322
// Add composite tools to capabilities
323
// Composite tools are static (from configuration) and not discovered from backends
324
// They are added here to be exposed alongside backend tools in the session
0 commit comments