mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-30 12:06:00 +00:00
fix(gms): Fix incorrect StatefulTokenService init (#5004)
StatefulTokenService was not getting correctly initialised in GMS due to a typo on the configuration for the salt leading to inconsistent hashing logic.
This commit is contained in:
parent
9e429f1d68
commit
72c310ce50
@ -19,7 +19,7 @@ public class DataHubTokenServiceFactory {
|
||||
@Value("${authentication.tokenService.signingKey:}")
|
||||
private String signingKey;
|
||||
|
||||
@Value("${authentication.tokenService.saltingKey:}")
|
||||
@Value("${authentication.tokenService.salt:}")
|
||||
private String saltingKey;
|
||||
|
||||
@Value("${elasticsearch.tokenService.signingAlgorithm:HS256}")
|
||||
|
Loading…
x
Reference in New Issue
Block a user