From 3796fce483f12371b7a8371265b5a5e4c1687ae6 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Wed, 3 Oct 2018 13:47:20 +0100 Subject: [PATCH] update settings to allow mongo host and remove unused health check userid --- services/notifications/config/settings.defaults.coffee | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/services/notifications/config/settings.defaults.coffee b/services/notifications/config/settings.defaults.coffee index d76b93e158..3baacee60f 100644 --- a/services/notifications/config/settings.defaults.coffee +++ b/services/notifications/config/settings.defaults.coffee @@ -5,10 +5,4 @@ module.exports = Settings = host: process.env["LISTEN_ADDRESS"] or "localhost" mongo: - url : "mongodb://#{process.env["MONGO_HOST"] or "localhost"}/sharelatex" - - notifications: - healthCheck: - user_id: "5620bece05509b0a7a3cbc62" - - + url: process.env['MONGO_CONNECTION_STRING'] or "mongodb://#{process.env["MONGO_HOST"] or "localhost"}/sharelatex"