From 7f74263cdcd5150067f41c17fc3e3ad351fad9b3 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Thu, 4 Feb 2016 13:46:59 +0000 Subject: [PATCH] default port to 3042 --- services/notifications/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/notifications/app.coffee b/services/notifications/app.coffee index 6ffb10ca44..b824094323 100644 --- a/services/notifications/app.coffee +++ b/services/notifications/app.coffee @@ -39,6 +39,6 @@ app.get '*', (req, res)-> res.send 404 host = Settings.internal?.notifications?.host || "localhost" -port = Settings.internal?.notifications?.port || 3041 +port = Settings.internal?.notifications?.port || 3042 app.listen port, host, -> logger.info "notifications starting up, listening on #{host}:#{port}"