Skip to content

Commit

Permalink
Bump default deduplication window to 1 min.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhelleborg committed Sep 6, 2023
1 parent 0345a6d commit ebdd7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proto.Cluster/ClusterConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private ClusterConfig(string clusterName, IClusterProvider clusterProvider, IIde
GossipFanout = 3;
GossipMaxSend = 50;
HeartbeatExpiration = TimeSpan.Zero;
ClusterRequestDeDuplicationWindow = TimeSpan.FromSeconds(30);
ClusterRequestDeDuplicationWindow = TimeSpan.FromMinutes(1);
IdentityLookup = identityLookup;
MemberStrategyBuilder = (_, _) => new SimpleMemberStrategy();
RemotePidCacheTimeToLive = TimeSpan.FromMinutes(15);
Expand Down

0 comments on commit ebdd7a4

Please sign in to comment.