From: Matt Jankowski Date: Tue, 23 May 2017 00:27:24 +0000 (-0400) Subject: Use local default for postgres host in node streaming service (#3240) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=8e84177305d0e226faff4e077df2e6a9c109cb1a;p=mastodon.git 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. --- 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, },