U4-7857 Flexible Load Balancing does not sync with the correct timeout threshold

This commit is contained in:
Shannon
2016-01-28 19:35:11 +01:00
parent 8c90e2fd58
commit e2bf27e53f

View File

@@ -175,7 +175,7 @@ namespace Umbraco.Core.Sync
if (_released)
return;
if ((DateTime.UtcNow - _lastSync).Seconds <= _options.ThrottleSeconds)
if ((DateTime.UtcNow - _lastSync).TotalSeconds <= _options.ThrottleSeconds)
return;
_syncing = true;