seneca-transport
seneca-transport copied to clipboard
Seneca micro-services message transport over TCP and HTTP.
Line 183: ``` track.push(seneca.id) ``` should be : ``` Array.isArray(track) && track.push(seneca.id) ```
I'm having a hard time with code that worked reliably for months suddenly stopped working with the above mentioned error after upgrading seneca (and therefore seneca-transport to 5.0.1). Downgrading to...
Hi, I'm debugging an issue with a set of seneca services is running inside a docker swarm and calling another seneca (stateful) service ouside the swarm. The calling service is...
Hi all, if you have a seneca instance (**seneca1**) calling another seneca instance (**seneca2**) which calls another seneca instance (**seneca3**), (sounds long but it should be pretty legit) if the...
Seneca 3.2 introduced the mechanism of inward/outward on act allowing to intercept action before/after their executions. This allows to upgrade act input / output dynamically on the fly. The same...
``` TypeError: Cannot set property 'setup' of undefined at EventEmitter. (/source/node_modules/seneca-transport/lib/tcp.js:160:69) at emitOne (events.js:96:13) at EventEmitter.emit (events.js:188:7) at onDisconnect (/source/node_modules/reconnect-core/index.js:64:17) at Socket.onError (/source/node_modules/reconnect-core/index.js:50:9) at emitOne (events.js:96:13) at Socket.emit (events.js:188:7) at...
For some considerable time we noticed that our Seneca instances using TCP transport as main way of communication consume memory in a very regular manner. Not so long time ago,...
Similar to some of the examples in the README if you want to specify a top level timeout for http it seems like it must be labeled as web. The...