From b7359ae67a5630581df35e77202e792dcfe42915 Mon Sep 17 00:00:00 2001 From: Yannis Barlas <yannisbarlas@gmail.com> Date: Tue, 27 Oct 2020 17:10:37 +0200 Subject: [PATCH] fix(server): do not load subscriptions if gql is off --- src/app.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app.js b/src/app.js index 187d726..e3cb1f6 100644 --- a/src/app.js +++ b/src/app.js @@ -94,7 +94,7 @@ const configureApp = app => { useGraphQLServer = false } - logger.warn('useGraphQLServer', useGraphQLServer) + logger.info('useGraphQLServer', useGraphQLServer) if (useGraphQLServer) { const gqlApi = require('./graphqlApi') @@ -138,10 +138,12 @@ const configureApp = app => { // Actions to perform when the HTTP server starts listening app.onListen = async server => { - const { - addSubscriptions, - } = require('pubsweet-server/src/graphql/subscriptions') - addSubscriptions(server) // Add GraphQL subscriptions + if (useGraphQLServer) { + const { + addSubscriptions, + } = require('pubsweet-server/src/graphql/subscriptions') + addSubscriptions(server) // Add GraphQL subscriptions + } const { startJobQueue } = require('pubsweet-server/src/jobs') await startJobQueue() // Manage job queue -- GitLab