This repository was archived by the owner on Feb 11, 2020. It is now read-only.

Description
The ioredis package is v1 where recently v4 supports rediss (Redis TLS) protocol e.g. to use a managed Redis database on Digital Ocean.
Besides updating the ioredis dependency, the lib/persistence/redis.js _buildClient function requires the addition of:
if (this.options.tls) {
options.tls = this.options.tls;
}