Skip to content

Commit

Permalink
KYLIN-3474 Tableau 10.5 get malformed token
Browse files Browse the repository at this point in the history
  • Loading branch information
TempleZhou authored and shaofengshi committed Mar 21, 2019
1 parent 4abe712 commit 14d0a37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public boolean equals(Object o) {
ManagedUser that = (ManagedUser) o;
return disabled == that.disabled && defaultPassword == that.defaultPassword && locked == that.locked
&& lockedTime == that.lockedTime && wrongTime == that.wrongTime
&& Objects.equals(username, that.username) && Objects.equals(password, that.password)
&& username.equalsIgnoreCase(that.username) && Objects.equals(password, that.password)
&& Objects.equals(authorities, that.authorities);
}

Expand Down

0 comments on commit 14d0a37

Please sign in to comment.