Skip to content

Commit

Permalink
[#1074] fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
chengyouling committed Sep 21, 2023
1 parent bc30644 commit 935ea65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ spring:

securityPolicyEnabled: true
acls:
tokenCheckEnabled: true
app: canary
mode: permissive
provider: account
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public void valid(String token, Map<String, String> requestMap) throws Exception
accessController.valid(token, requestMap);
}
}catch(Exception e){
LOGGER.error("verify error", e);
}
LOGGER.error("verify error", e);
throw e;
}
}
}

0 comments on commit 935ea65

Please sign in to comment.