We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5a829 commit d22dbb4Copy full SHA for d22dbb4
src/Umbraco.Web/UmbracoContext.cs
@@ -370,8 +370,14 @@ protected override void DisposeResources()
370
_umbracoContext = null;
371
//ensure not to dispose this!
372
Application = null;
373
- ContentCache = null;
374
- MediaCache = null;
+
+ //Before we set these to null but in fact these are application lifespan singletons so
375
+ //there's no reason we need to set them to null and this also caused a problem with packages
376
+ //trying to access the cache properties on RequestEnd.
377
+ //http://issues.umbraco.org/issue/U4-2734
378
+ //http://our.umbraco.org/projects/developer-tools/301-url-tracker/version-2/44327-Issues-with-URL-Tracker-in-614
379
+ //ContentCache = null;
380
+ //MediaCache = null;
381
}
382
383
0 commit comments