Browse Source

fix merge error in config.go

Signed-off-by: justin-slowik <justin.slowik@thermofisher.com>
pull/1706/head
justin-slowik 6 years ago
parent
commit
1ea2892b79
  1. 6
      cmd/dex/config.go

6
cmd/dex/config.go

@ -103,11 +103,7 @@ func (p *password) UnmarshalJSON(b []byte) error {
data.Hash = os.Getenv(data.HashFromEnv)
}
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.

Loading…
Cancel
Save