Unverified Commit e356da4b authored by Brandon Fergerson's avatar Brandon Fergerson Committed by GitHub
Browse files

#4907 - Duplicate Spring MVC endpoint fix (#5084)

parent ce2469db
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -84,9 +84,9 @@ public abstract class AbstractMethodInterceptor implements InstanceMethodsAround
            if (requestURL == null) {
                requestURL = getRequestURL(method);
                pathMappingCache.addPathMapping(method, requestURL);
                requestURL = getAcceptedMethodTypes(method) + pathMappingCache.findPathMapping(method);
                requestURL = pathMappingCache.findPathMapping(method);
            }
            operationName = requestURL;
            operationName = getAcceptedMethodTypes(method) + requestURL;
        }

        HttpServletRequest request = (HttpServletRequest) ContextManager.getRuntimeContext()