From bc3c73a992e0dfb9a873cc01d442110af4830ec8 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Mon, 8 May 2017 13:26:07 -0600 Subject: [PATCH] Fix for incorrect options passed to pubsub --- graph/pubsub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/pubsub.js b/graph/pubsub.js index a5ee95b80..704f83725 100644 --- a/graph/pubsub.js +++ b/graph/pubsub.js @@ -2,4 +2,4 @@ const {RedisPubSub} = require('graphql-redis-subscriptions'); const {connectionOptions} = require('../services/redis'); -module.exports = new RedisPubSub(connectionOptions); +module.exports = new RedisPubSub({connection: connectionOptions});