Andrew Lavers
Andrew Lavers
How about performing a redis.quit() or [redis.disconnect()](https://github.com/luin/ioredis/blob/master/API.md#Redis+disconnect) inside of your after or afterEach teardown methods?
@Eywek @shaharmor Do you have any more details on how you reproduce this issue? Is it possible you're connected to a slave that has begun a resync? E.g if the...
^I have a hypothesis that an error handler like this: ``` reconnectOnError: function(err) { if (err.message.includes("LOADING")) { return 2; } } ``` _might_ solve this problem and if so should...
I'd suggest maybe running your code with ioredis [debug logging](https://github.com/luin/ioredis#debug) turned on.
Wait a sec, >i've broken my app onto 2 redis instances (one dedicated to pub/sub incase that has an impact) You already have to do this. Once a redis client...