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
Removing NullCache for resource resolution. Keeping it for url resolution. BroadleafCommerce/QA#603. This should prevent a 404 that happens in a narrow scenario from persisting through for other requests.
Copy file name to clipboardExpand all lines: common/src/main/java/org/broadleafcommerce/common/web/resource/resolver/BroadleafCachingResourceResolver.java
+1-30Lines changed: 1 addition & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -62,15 +62,6 @@ public class BroadleafCachingResourceResolver extends CachingResourceResolver im
62
62
@Value("${resource.caching.enabled:true}")
63
63
protectedbooleanresourceCachingEnabled;
64
64
65
-
/**
66
-
* Storing null resource resolution was added for performance reasons. An issue occurred in admin (QA#603) that as
67
-
* of this writing, we have not been able to be reproduce. This property is used for defensive coding since the
68
-
* section is not used for admin in normal cases. This along with additional logging in the QA environment should
69
-
* help to locate the issue. If null cache was the reason then this will fix the issue for admin.
0 commit comments