From a9f0fdaf22459b338c4958083b2b52e674bdffca Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 23 Feb 2018 18:26:34 -0800 Subject: Print info message if DATABASE_URL is not set --- config/config.go | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'config') diff --git a/config/config.go b/config/config.go index 9bd673e..5bb9cb4 100644 --- a/config/config.go +++ b/config/config.go @@ -8,6 +8,8 @@ import ( "net/url" "os" "strconv" + + "github.com/miniflux/miniflux/logger" ) const ( @@ -89,7 +91,16 @@ func (c *Config) BasePath() string { // DatabaseURL returns the database URL. func (c *Config) DatabaseURL() string { - return c.get("DATABASE_URL", defaultDatabaseURL) + value, exists := os.LookupEnv("DATABASE_URL") + if !exists { + logger.Info("The environment variable DATABASE_URL is not configured (the default value is used instead)") + } + + if value == "" { + value = defaultDatabaseURL + } + + return value } // DatabaseMaxConnections returns the number of maximum database connections. -- cgit v1.2.3