From 8e84177305d0e226faff4e077df2e6a9c109cb1a Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Mon, 22 May 2017 20:27:24 -0400 Subject: [PATCH] Use local default for postgres host in node streaming service (#3240) This location varies across postgres installations, and it seems like the pg package knows how to guess correctly on each system. --- streaming/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/streaming/index.js b/streaming/index.js index 627b677a8..9e4674590 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -86,7 +86,6 @@ if (cluster.isMaster) { const pgConfigs = { development: { database: 'mastodon_development', - host: '/var/run/postgresql', max: 10, },