Alek Sai
Results
2
issues of
Alek Sai
``` const RedisSMQ = require("rsmq") const Redis = require("ioredis") const redis = new Redis("redis://:[email protected]:6379/0") const rsmq = new RedisSMQ({ client: redis }) rsmq.sendMessage({ qname: queue_name, message: JSON.stringify(message) }, function (err,...
Hi, trying to stop horseman chain if it receives an alert: ```javascript horseman.on('alert', function(msg) { return horseman.close() }) ``` But it's still trying to complete chain till the end. How...