Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.1.0-ga1
-
Component/s: liferay-faces-bridge
-
Labels:None
-
Similar Issues:
Description
The following method in BridgeRequestScopeManagerImpl looks like this:
public void removeBridgeRequestScope(BridgeRequestScope bridgeRequestScope, PortletContext portletContext) {
getBridgeRequestScopeCache(portletContext).remove(bridgeRequestScope);
}
But it needs to look like this:
getBridgeRequestScopeCache(portletContext).remove(bridgeRequestScope.getId());

Note that this is a major memory leak and so upgrading to the 3.0.x version of the bridge is critical.