fix merge error in config.go

Signed-off-by: justin-slowik <justin.slowik@thermofisher.com>
This commit is contained in:
justin-slowik 2020-07-08 16:30:08 -04:00
parent 1404477326
commit 1ea2892b79

View file

@ -103,12 +103,8 @@ func (p *password) UnmarshalJSON(b []byte) error {
data.Hash = os.Getenv(data.HashFromEnv) data.Hash = os.Getenv(data.HashFromEnv)
} }
if len(data.Hash) == 0 { if len(data.Hash) == 0 {
if len(data.HashFromEnv) > 0 {
data.Hash = os.Getenv(data.HashFromEnv)
} else {
return fmt.Errorf("no password hash provided") return fmt.Errorf("no password hash provided")
} }
}
// If this value is a valid bcrypt, use it. // If this value is a valid bcrypt, use it.
_, bcryptErr := bcrypt.Cost([]byte(data.Hash)) _, bcryptErr := bcrypt.Cost([]byte(data.Hash))