Fixes merge issues

This commit is contained in:
Shannon
2014-12-08 17:19:48 +11:00
parent 0a7bbfb1ca
commit d2dbd91b17
4 changed files with 3 additions and 10 deletions

View File

@@ -47,8 +47,7 @@ namespace Umbraco.Web.Scheduling
using (DisposableTimer.DebugDuration<LogScrubber>(() => "Log scrubbing executing", () => "Log scrubbing complete"))
{
Log.CleanLogs(GetLogScrubbingMaximumAge(_settings));
}
}
}
}
}
}

View File

@@ -42,11 +42,10 @@ namespace Umbraco.Web.Scheduling
_isPublishingRunning = true;
var umbracoBaseUrl = ServerEnvironmentHelper.GetCurrentServerUmbracoBaseUrl(_appContext);
var umbracoBaseUrl = ServerEnvironmentHelper.GetCurrentServerUmbracoBaseUrl(_appContext, _settings);
try
{
var umbracoBaseUrl = ServerEnvironmentHelper.GetCurrentServerUmbracoBaseUrl(_appContext, _settings);
{
if (string.IsNullOrWhiteSpace(umbracoBaseUrl))
{

View File

@@ -100,10 +100,6 @@ namespace Umbraco.Web.Scheduling
_scrubberRunner.Add(new LogScrubber(appContext, settings));
}
private static void PerformLogScrub(ApplicationContext appContext)
{
_scrubberRunner.Add(new LogScrubber(appContext));
}
/// <summary>
/// This performs all of the scheduling on the one timer
/// </summary>

View File

@@ -493,7 +493,6 @@
<Compile Include="Mvc\UmbracoVirtualNodeRouteHandler.cs" />
<Compile Include="Routing\CustomRouteUrlProvider.cs" />
<Compile Include="Routing\UrlProviderExtensions.cs" />
<Compile Include="Scheduling\TaskEventArgs.cs" />
<Compile Include="Strategies\Migrations\ClearCsrfCookiesAfterUpgrade.cs" />
<Compile Include="Strategies\Migrations\ClearMediaXmlCacheForDeletedItemsAfterUpgrade.cs" />
<Compile Include="Strategies\Migrations\EnsureListViewDataTypeIsCreated.cs" />