diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-05-22 20:27:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 20:27:24 -0400 |
commit | 8e84177305d0e226faff4e077df2e6a9c109cb1a (patch) | |
tree | 3edb10623ae101cbce4bf4eeda3a5045c3b5d42c /streaming | |
parent | a28ce13b3e7da2159fdc4800214910740a66c3bf (diff) |
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.
Diffstat (limited to 'streaming')
-rw-r--r-- | streaming/index.js | 1 |
1 files changed, 0 insertions, 1 deletions
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, }, |