Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Author Errors

Avatar

Level 2

04.06.2019 06:04:49.041 *ERROR* [127.0.0.1 [1559628288822] GET /content/mam/web/master/de/spend.thumb.48.48.png HTTP/1.1] com.mam.web.validation.filters.ComponentErrorHandlerFilter an Exception class org.apache.sling.api.request.RecursionTooDeepException, could not be handled

04.06.2019 06:04:49.042 *ERROR* [127.0.0.1 [1559628288822] GET /content/mam/web/master/de/spend.thumb.48.48.png HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Uncaught SlingException

Are these errors duplicate to each other??

2 Replies

Avatar

Employee

AEM 6.3?

In CRX/DE go to

  • /libs/cq/Page/proxy.jsp
  • line 41 changes from :
    if(crValueMap != null && crValueMap.containsKey(NameConstants.PN_REDIRECT_TARGET)) {
    to
    if(crValueMap != null && crValueMap.containsKey(NameConstants.PN_REDIRECT_TARGET) && slingRequest.getRequestPathInfo().getSelectors().length == 0) {
  • Then recompile the JSPs

This RecursionTooDeepException happens when there is a selector on the request path and the thumbnail gets into this infinite recursive call until the stack takes a shit.