Skip to content

Commit

Permalink
fix exception
Browse files Browse the repository at this point in the history
  • Loading branch information
yanrongzhen committed Oct 23, 2023
1 parent cc8de30 commit c0612bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static boolean authAccess(AclProperties aclProperties) {
Object topics = aclProperties.getExtendedField("topics");

if (!(topics instanceof Set)) {
throw new RuntimeException("abc");
return false;
}

Set<String> groupTopics = TypeUtils.castSet(topics, String.class);
Expand Down

0 comments on commit c0612bc

Please sign in to comment.