From fda72b2acc1d2d93f5d11acebd3b94f9f62005dc Mon Sep 17 00:00:00 2001 From: Shannon Date: Fri, 27 Mar 2015 15:19:31 +1100 Subject: [PATCH] changes the MaxWaitMilliseconds tp 30000 to be consistent with the 7.3 branch --- .../PublishedCache/XmlPublishedCache/XmlCacheFilePersister.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/PublishedCache/XmlPublishedCache/XmlCacheFilePersister.cs b/src/Umbraco.Web/PublishedCache/XmlPublishedCache/XmlCacheFilePersister.cs index d304e99f93..9fd58eedbc 100644 --- a/src/Umbraco.Web/PublishedCache/XmlPublishedCache/XmlCacheFilePersister.cs +++ b/src/Umbraco.Web/PublishedCache/XmlPublishedCache/XmlCacheFilePersister.cs @@ -33,7 +33,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache private DateTime _initialTouch; private const int WaitMilliseconds = 4000; // save the cache 4s after the last change (ie every 4s min) - private const int MaxWaitMilliseconds = 10000; // save the cache after some time (ie no more than 10s of changes) + private const int MaxWaitMilliseconds = 30000; // save the cache after some time (ie no more than 30s of changes) // save the cache when the app goes down public bool RunsOnShutdown { get { return true; } }