You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following should be analyzed because off hand it seems inefficient. Multipart requests are resolved multiple times for handling url mappings which appears to be real inefficient.
The following should be analyzed because off hand it seems inefficient. Multipart requests are resolved multiple times for handling url mappings which appears to be real inefficient.
grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/mvc/UrlMappingsHandlerMapping.groovy
Line 157 in 6f9d173
grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/mvc/GrailsControllerUrlMappings.java
Lines 45 to 67 in 6f9d173
grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/mvc/AbstractGrailsControllerUrlMappings.groovy
Lines 185 to 203 in 6f9d173
->
DefaultUrlMappingInfo.tryMultipartParams
is invoked for every UrlMappingInfo because of the call to getActionName()grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/AbstractUrlMappingInfo.java
Lines 70 to 102 in 6f9d173
grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/DefaultUrlMappingInfo.java
Lines 197 to 205 in 6f9d173
due to
checkDispatchAction(webRequest.getCurrentRequest());
grails-core/grails-web-url-mappings/src/main/groovy/org/grails/web/mapping/DefaultUrlMappingInfo.java
Lines 215 to 221 in 6f9d173
The text was updated successfully, but these errors were encountered: