Mathias Lundell
Mathias Lundell
> Now that there is a way to transfer leadership of a queue to a different node, it is an option for, say, durable queues. @michaelklishin Which method are you...
Can you use `#nack(message, false, requeue)` instead? `reject` is a function in `amqplib` to maintain backwards compatibility with very old versions of RabbitMq (< v2.3.0). I think it makes more...
When a client reconnects, it sends a login-request to our back-end. The back-end generates a new token and calls device.updateToken() with the new token. If the device is in state...
Hi @charliesantos I have created a zip file which includes everything you will need to recreate the error. All you have to do is enter a valid access token in...
See discussions here: #3957 Basically `origin` must be provided each time with `Client` (and `Pool`).
Sure =)
@mcollina I'm not sure how to fix this without breaking the links in the github repo README. The docs/README.md is just a symbolic link for /README.md so I don't think...
> The origin should always be in `origDispatchOpts`. This seems to be a hack. I kinda agree, but didn't find where else to put it?
I made an alternative solution. It currently breaks a test for `test/interceptors/retry.js` and I'm unsure if it is an actual error or not? Should I just change the expected value?
The interceptor does only have access to the options called by .request(). The request method has access to all variables in `this` (e.g Pool) since it is bound to `this`...