[KOE-115] Enabled sync stall detection by default

This commit is contained in:
Patrick Simpson 2017-06-30 11:56:14 +02:00
parent af6c8af7e4
commit f005d8beee
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ namespace Acacia.Features.SyncState
get { return GetOption(OPTION_CHECK_SYNC_STALL); }
set { SetOption(OPTION_CHECK_SYNC_STALL, value); }
}
private static readonly BoolOption OPTION_CHECK_SYNC_STALL = new BoolOption("CheckSyncStall", false);
private static readonly BoolOption OPTION_CHECK_SYNC_STALL = new BoolOption("CheckSyncStall", true);
[AcaciaOption("Sets the period that triggers a full resynchronisation suggestion. Note that the check is only performed " +
"when the synchronisation state is being updated, so the effective period may be longer than this.")]