mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #880 from milanperera/iot-master
Fixed JWT properties reading issue
This commit is contained in:
commit
d8d8b6f644
@ -103,11 +103,19 @@ public class JWTClientManagerServiceImpl implements JWTClientManagerService {
|
||||
if (defaultJWTClientMode != null && !defaultJWTClientMode.isEmpty()) {
|
||||
isDefaultJwtClient = Boolean.parseBoolean(defaultJWTClientMode);
|
||||
}
|
||||
JWTConfig jwtConfig = new JWTConfig(properties);
|
||||
if (isDefaultJwtClient) {
|
||||
try {
|
||||
JWTConfig jwtConfig = new JWTConfig(properties);
|
||||
defaultJWTClient = new JWTClient(jwtConfig, true);
|
||||
addJWTClient(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME, defaultJWTClient);
|
||||
} catch (JWTClientAlreadyExistsException e) {
|
||||
log.warn("Attempting to register a default jwt client for the super tenant" +
|
||||
" when one already exists. Returning existing jwt client", e);
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
JWTClient jwtClient = new JWTClient(jwtConfig);
|
||||
addJWTClient(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME, jwtClient);
|
||||
} catch (JWTClientAlreadyExistsException e) {
|
||||
log.warn("Attempting to register a jwt client for the super tenant" +
|
||||
" when one already exists. Returning existing jwt client", e);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user