Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/3.11' into 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
philipmarzullo64 committed Aug 18, 2020
2 parents c6c0f0c + 9b96882 commit f7adedb
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -947,6 +947,9 @@ public NodeHost mapRow(Row rs) {
public AuthenticationStatus getAuthenticationStatus(String nodeId, String securityToken) {
AuthenticationStatus retVal = AuthenticationStatus.ACCEPTED;
Node node = findNode(nodeId, true);
if(node == null) {
node = findNode(nodeId, false);
}
if (node == null) {
retVal = AuthenticationStatus.REGISTRATION_REQUIRED;
} else if (!syncEnabled(node)) {
Expand Down

0 comments on commit f7adedb

Please sign in to comment.