dcapwell commented on code in PR #3656:
URL: https://github.com/apache/cassandra/pull/3656#discussion_r1831496016
##########
src/java/org/apache/cassandra/service/accord/AccordService.java:
##########
@@ -568,6 +567,18 @@ public static List<ClusterMetadata> tcmLoadRange(long min,
long max)
return afterLoad;
}
+ private static List<ClusterMetadata> reconstruct(long min, long max)
+ {
+ Epoch start = Epoch.create(min);
+ Epoch end = Epoch.create(max);
+ Retry.Deadline deadline = Retry.Deadline.wrap(new
Retry.ExponentialBackoff(42,
Review Comment:
spoke in slack, changed to use max retry and default backoff for the first 2
params; added a new max backoff for the 3rd param as a config.
new defaults match `10, 50ms, 1s`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]