fix(configuration): invalid password algorithm tag (#2972)
This fixes a configuration parsing issue that could potentially occur if we were to change the internal name of the struct field.pull/2973/head
parent
6d937cf6cc
commit
6a1c5ed533
|
@ -38,7 +38,7 @@ type PasswordConfiguration struct {
|
|||
Iterations int `koanf:"iterations"`
|
||||
KeyLength int `koanf:"key_length"`
|
||||
SaltLength int `koanf:"salt_length"`
|
||||
Algorithm string `mapstrucutre:"algorithm"`
|
||||
Algorithm string `koaanf:"algorithm"`
|
||||
Memory int `koanf:"memory"`
|
||||
Parallelism int `koanf:"parallelism"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue