Skip to content

Commit

Permalink
Issue #6554 - create the DefaultIdentityService even if no realmName …
Browse files Browse the repository at this point in the history
…is provided

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Aug 2, 2021
1 parent 5dcc14b commit 29a8d5d
Showing 1 changed file with 2 additions and 5 deletions.
Expand Up @@ -334,11 +334,8 @@ protected void doStart()

if (_identityService == null)
{
if (_realmName != null)
{
setIdentityService(new DefaultIdentityService());
manage(_identityService);
}
setIdentityService(new DefaultIdentityService());
manage(_identityService);
}
else
unmanage(_identityService);
Expand Down

0 comments on commit 29a8d5d

Please sign in to comment.