Skip to content

Commit b9596a7

Browse files
authored
Merge pull request alibaba#4708 from KomachiSion/develop-console-invalid
Revert interceptor all ui problem
2 parents 2cc0be6 + 619dd68 commit b9596a7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/src/main/java/com/alibaba/nacos/core/auth/AuthFilter.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
100100
Method method = methodsCache.getMethod(req);
101101

102102
if (method == null) {
103-
// For #4701, Only support register API.
104-
resp.sendError(HttpServletResponse.SC_NOT_FOUND,
105-
"Not found mehtod for path " + req.getMethod() + " " + req.getRequestURI());
103+
chain.doFilter(request, response);
106104
return;
107105
}
108106

0 commit comments

Comments
 (0)