diff --git a/package.json b/package.json index 44d49b98..4e28f4b1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Calvin Montgomery", "name": "CyTube", "description": "Online media synchronizer and chat", - "version": "3.16.1", + "version": "3.17.0", "repository": { "url": "http://github.com/calzoneman/sync" }, diff --git a/src/partition/partitionchannelindex.js b/src/partition/partitionchannelindex.js index 313e9f32..c23a650c 100644 --- a/src/partition/partitionchannelindex.js +++ b/src/partition/partitionchannelindex.js @@ -15,6 +15,10 @@ class PartitionChannelIndex { this.redisClient = redisClient; this.uid = uuid.v4(); this.cachedList = []; + this.redisClient.on('error', error => { + Logger.errlog.log(`Redis error: ${error}`); + }); + process.nextTick(() => { SERVER = require('../server').getServer(); this.refreshCache();