Skip to content

Commit

Permalink
Merged PR 714350: Remove infinite check
Browse files Browse the repository at this point in the history
Remove infinite check
  • Loading branch information
jbayardo committed Apr 21, 2023
1 parent 0bae4bb commit ead9c1b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ClusterStateManager(

LinkLifetime(_storage);

if (_configuration.UpdateInterval > TimeSpan.Zero && _configuration.UpdateInterval < Timeout.InfiniteTimeSpan)
if (_configuration.UpdateInterval > TimeSpan.Zero)
{
RunInBackground(nameof(BackgroundUpdateAsync), BackgroundUpdateAsync, fireAndForget: true);
}
Expand Down

0 comments on commit ead9c1b

Please sign in to comment.