Skip to content

Commit ead9c1b

Browse files
committed
Merged PR 714350: Remove infinite check
Remove infinite check
1 parent 0bae4bb commit ead9c1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Public/Src/Cache/ContentStore/Distributed/NuCache/ClusterStateManagement/ClusterStateManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public ClusterStateManager(
5858

5959
LinkLifetime(_storage);
6060

61-
if (_configuration.UpdateInterval > TimeSpan.Zero && _configuration.UpdateInterval < Timeout.InfiniteTimeSpan)
61+
if (_configuration.UpdateInterval > TimeSpan.Zero)
6262
{
6363
RunInBackground(nameof(BackgroundUpdateAsync), BackgroundUpdateAsync, fireAndForget: true);
6464
}

0 commit comments

Comments
 (0)