U4-7682 Minor review adjustments

This commit is contained in:
Stephan
2016-01-28 14:19:32 +01:00
parent a0036d925e
commit c9c451be65
3 changed files with 76 additions and 84 deletions

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
namespace Umbraco.Core.Sync
{
/// <summary>
/// Provides options to the <see cref="DatabaseServerMessenger"/>.
/// </summary>
@@ -15,13 +14,12 @@ namespace Umbraco.Core.Sync
public DatabaseServerMessengerOptions()
{
DaysToRetainInstructions = 2; // 2 days
ThrottleSeconds = 5; // 5 seconds
ThrottleSeconds = 5; // 5 second
MaxProcessingInstructionCount = 1000;
}
/// <summary>
/// If the number of instructions exceeds this amount during startup then the server will cold boot (rebuild it's own caches)
/// The maximum number of instructions that can be processed at startup; otherwise the server cold-boots (rebuilds its caches).
/// </summary>
public int MaxProcessingInstructionCount { get; set; }