WI#30727 addendum - Missed adding a lock to the ClearProcessedRequests method

This commit is contained in:
Casey Neehouse
2012-02-11 02:34:59 +05:00
parent 3e38b57496
commit 2b9e798c35

View File

@@ -40,7 +40,10 @@ namespace umbraco {
private bool _doNotCache = false;
public static void ClearProcessedRequests() {
_processedRequests.Clear();
lock (locker)
{
_processedRequests.Clear();
}
}
public static string cleanUrl() {