filer: do not print password on error

fix https://github.com/chrislusf/seaweedfs/issues/1809
This commit is contained in:
Chris Lu
2021-02-17 02:13:50 -08:00
parent 5579caf5a5
commit 3f8b0da677
4 changed files with 17 additions and 5 deletions

View File

@@ -51,8 +51,10 @@ func (store *MysqlStore) initialize(user, password, hostname string, port int, d
}
sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, password, hostname, port, database)
adaptedSqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, "<ADAPTED>", hostname, port, database)
if interpolateParams {
sqlUrl += "&interpolateParams=true"
adaptedSqlUrl += "&interpolateParams=true"
}
var dbErr error
@@ -60,7 +62,7 @@ func (store *MysqlStore) initialize(user, password, hostname string, port int, d
if dbErr != nil {
store.DB.Close()
store.DB = nil
return fmt.Errorf("can not connect to %s error:%v", sqlUrl, err)
return fmt.Errorf("can not connect to %s error:%v", adaptedSqlUrl, err)
}
store.DB.SetMaxIdleConns(maxIdle)