Skip to content

Commit

Permalink
payara#4281 Replaced isValid by getIsValid
Browse files Browse the repository at this point in the history
- fixes deadlock between SingleSignOnEntry:121 and BaseHASession:239
  • Loading branch information
sgflt committed Feb 9, 2020
1 parent ec1e4c5 commit 1b41962
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1345,10 +1345,10 @@ public Map<String, Object> getAttributes() {
@Override
public Enumeration<String> getAttributeNames() {

if (!isValid())
if (!getIsValid()) {
throw new IllegalStateException
("getAttributeNames: " + RESOURCE_BUNDLE.getString(LogFacade.SESSION_INVALIDATED_EXCEPTION));

("getAttributeNames: " + RESOURCE_BUNDLE.getString(LogFacade.SESSION_INVALIDATED_EXCEPTION));
}

return (new Enumerator<>(attributes.keySet(), true));

Expand Down

0 comments on commit 1b41962

Please sign in to comment.