Skip to content

Commit

Permalink
CONTENT-2580 Multiple errors in Event Viewer related to synchronizing…
Browse files Browse the repository at this point in the history
… cache in web farm environment
  • Loading branch information
cnurse committed Jun 4, 2014
1 parent 9c43481 commit 55709d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DNN Platform/Library/Entities/Urls/AdvancedUrlRewriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,7 @@ private static bool IgnoreRequestForInstall(string physicalPath, string refererP

private static bool IgnoreRequestForWebServer(string requestedPath)
{
if (requestedPath.EndsWith("synchronizecache.aspx", true, CultureInfo.InvariantCulture)
if (requestedPath.ToLowerInvariant().IndexOf("synchronizecache.aspx", StringComparison.Ordinal) > 1
|| requestedPath.EndsWith("keepalive.aspx", true, CultureInfo.InvariantCulture))
{
return true;
Expand Down

0 comments on commit 55709d1

Please sign in to comment.