From b53dd50340ebde8abee8e0b6ff0773ccc7928c6a Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Thu, 4 Feb 2016 13:38:33 +0000 Subject: [PATCH] default port 3041 --- 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 e831015aba..6ffb10ca44 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 || 3033 +port = Settings.internal?.notifications?.port || 3041 app.listen port, host, -> logger.info "notifications starting up, listening on #{host}:#{port}"