Change default database connection string

This commit is contained in:
Frédéric Guillot 2018-11-09 21:58:09 -08:00
parent 3b6e44c331
commit 186f2b11c3
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ import (
const (
defaultBaseURL = "http://localhost"
defaultDatabaseURL = "postgres://postgres:postgres@localhost/miniflux2?sslmode=disable"
defaultDatabaseURL = "user=postgres password=postgres dbname=miniflux2 sslmode=disable"
defaultWorkerPoolSize = 5
defaultPollingFrequency = 60
defaultBatchSize = 10