From f005d8beeeb1e56097ea224e8913e0138e61fcae Mon Sep 17 00:00:00 2001 From: Patrick Simpson Date: Fri, 30 Jun 2017 11:56:14 +0200 Subject: [PATCH] [KOE-115] Enabled sync stall detection by default --- .../AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs index 2366ef6..d2cfb9f 100644 --- a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs +++ b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/SyncState/FeatureSyncState.cs @@ -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.")]