Open vforv opened 7 years ago
I am using last version of seneca do this work with it?
Here is my set up:
client:
Seneca({ logger: require('seneca-demo-logger'), debug: { short_logs: true } } ) .use('redis-queue-transport') .client({ type: 'redis-queue', pin: 'role:ping,cmd:date', port: 6379 }) .use(ping.getPing1)
.ready(() => { })
> server:
Seneca({ logger: require('seneca-demo-logger'), debug: { short_logs: true } } ) .use('redis-queue-transport') .use(ping.getPing) .listen({type: 'redis-queue', pin: 'role:ping,cmd:date', port:6379 }) .ready(() => { console.log(Ping service ready!!!}) })
Ping service ready!!!}
Here is the fix
https://github.com/senecajs/seneca-redis-queue-transport/pull/33
I am using last version of seneca do this work with it?
Here is my set up:
Seneca({ logger: require('seneca-demo-logger'), debug: { short_logs: true } } ) .use('redis-queue-transport') .client({ type: 'redis-queue', pin: 'role:ping,cmd:date', port: 6379 }) .use(ping.getPing1)
.ready(() => { })
Seneca({ logger: require('seneca-demo-logger'), debug: { short_logs: true } } ) .use('redis-queue-transport') .use(ping.getPing) .listen({type: 'redis-queue', pin: 'role:ping,cmd:date', port:6379 }) .ready(() => { console.log(
Ping service ready!!!}
) })