Browse Source

Merge pull request #1674 from thorgrin/patch-1

Fixed default postgres user name to match docs
dcarns 2 years ago
parent
commit
9efdd1a73d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      servercfg/sqlconf.go

+ 1 - 1
servercfg/sqlconf.go

@@ -36,7 +36,7 @@ func GetSQLPort() int32 {
 	return port
 }
 func GetSQLUser() string {
-	user := "posgres"
+	user := "postgres"
 	if os.Getenv("SQL_USER") != "" {
 		user = os.Getenv("SQL_USER")
 	} else if config.Config.SQL.Username != "" {