Xb2555 commented on code in PR #7876:
URL: https://github.com/apache/incubator-seata/pull/7876#discussion_r2637023460


##########
console/src/main/java/org/apache/seata/console/config/WebSecurityConfig.java:
##########
@@ -98,7 +103,13 @@ public AuthenticationManager authenticationManager() {
 
     @Bean
     public WebSecurityCustomizer webSecurityCustomizer() {
-        RequestMatcher[] ignoredMatchers = 
buildAntMatchers(env.getProperty("seata.security.ignore.urls", "/**"));
+        StringBuilder ignoreURLs = new 
StringBuilder(env.getProperty("seata.security.ignore.urls", "/**"));

Review Comment:
   I tried before. The path that needs to be ignored directly passed in as a 
string cannot be configured correctly. It needs to be converted to the 
RequestMatcher array (it might be a problem with the new version of security).



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to