@camstack/agent 1.1.47 → 1.1.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-Z7VZQCFX.mjs → chunk-P6AJ6S7H.mjs} +8 -1
- package/dist/chunk-P6AJ6S7H.mjs.map +1 -0
- package/dist/cli.js +7 -0
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +8 -8
- package/dist/chunk-Z7VZQCFX.mjs.map +0 -1
package/dist/cli.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -2708,6 +2708,13 @@ async function startAgent(configPath) {
|
|
|
2708
2708
|
});
|
|
2709
2709
|
agentUdsRegistry = new import_system3.LocalChildRegistry({
|
|
2710
2710
|
server: (0, import_system3.createLocalTransport)().createServer(agentNodeId),
|
|
2711
|
+
// The agent's own id — a cap call pinned to THIS agent (e.g. the
|
|
2712
|
+
// benchmark running `pipeline-executor.runPipeline` on the very node it
|
|
2713
|
+
// is on) is served by the co-resident sibling instead of being forwarded
|
|
2714
|
+
// to the hub (the agent has no CapRouteResolver, and the hub would reject
|
|
2715
|
+
// it with "no provider registered" unless it knew the agent hosts the
|
|
2716
|
+
// cap). A pin to ANOTHER node still bypasses the sibling → onUnownedCall.
|
|
2717
|
+
ownNodeId: agentNodeId,
|
|
2711
2718
|
onUnownedCall
|
|
2712
2719
|
});
|
|
2713
2720
|
await agentUdsRegistry.start();
|