Improve redis config

This commit is contained in:
syuilo
2019-03-09 23:44:54 +09:00
parent 948a133b7b
commit 5a0a297634
3 changed files with 8 additions and 3 deletions

View File

@ -16,8 +16,9 @@ function initializeQueue(name: string) {
port: config.redis.port,
host: config.redis.host,
password: config.redis.pass,
db: 1
}
db: config.redis.db || 0,
},
prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : 'queue'
} : null);
}