Redis subscriberで認証ができないのを修正 Fix #5727 (#5730)

This commit is contained in:
MeiMei 2020-01-20 01:51:18 +09:00 committed by syuilo
parent 10f237be95
commit 79cbf0888c

View file

@ -24,7 +24,12 @@ module.exports = (server: http.Server) => {
// Connect to Redis
const subscriber = redis.createClient(
config.redis.port, config.redis.host);
config.redis.port,
config.redis.host,
{
password: config.redis.pass
}
);
subscriber.subscribe(config.host);