Merge pull request #500 from mchangrh/fix-tests

fix tests
This commit is contained in:
Ajay Ramachandran
2022-09-07 12:03:05 -04:00
committed by GitHub
12 changed files with 87 additions and 29 deletions

View File

@@ -48,7 +48,10 @@ if (config.redis?.enabled) {
.catch((err) => reject(err))
);
client.on("error", function(error) {
Logger.error(error);
Logger.error(`Redis Error: ${error}`);
});
client.on("reconnect", () => {
Logger.info("Redis: trying to reconnect");
});
}