@camstack/agent 1.1.16 → 1.1.18
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-YI3D74BS.mjs → chunk-XEHYJVPH.mjs} +13 -2
- package/dist/chunk-XEHYJVPH.mjs.map +1 -0
- package/dist/cli.js +10 -1
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-YI3D74BS.mjs.map +0 -1
package/dist/cli.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1330,8 +1330,17 @@ async function startAgent(configPath) {
|
|
|
1330
1330
|
udsEventBridgeDispose = (0, import_system3.createUdsEventBridge)({
|
|
1331
1331
|
registry: agentUdsRegistry,
|
|
1332
1332
|
parentBus: agentBrokerEventBus,
|
|
1333
|
-
parentNodeId: broker.nodeID
|
|
1333
|
+
parentNodeId: broker.nodeID,
|
|
1334
|
+
// D2: relay to children via the pass-through subscription so the bridge's
|
|
1335
|
+
// wildcard does NOT count toward this node's local interest (otherwise the
|
|
1336
|
+
// gate could never filter anything).
|
|
1337
|
+
subscribePassthrough: (handler) => (0, import_system3.subscribePassthrough)(broker, handler)
|
|
1334
1338
|
});
|
|
1339
|
+
const interestRegistry = agentUdsRegistry;
|
|
1340
|
+
(0, import_system3.setNodeEventInterest)(
|
|
1341
|
+
broker,
|
|
1342
|
+
() => interestRegistry.aggregateEventInterest()
|
|
1343
|
+
);
|
|
1335
1344
|
const agentReadinessRegistry = (0, import_system3.getOrInitReadinessRegistry)(
|
|
1336
1345
|
broker,
|
|
1337
1346
|
agentBrokerEventBus,
|