Skip to content
Snippets Groups Projects
Commit 79cbf088 authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

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

parent 10f237be
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment