Skip to content

Commit

Permalink
Adding a ZOOKEEPER_RETRY_POLICY config property
Browse files Browse the repository at this point in the history
  • Loading branch information
computate committed Oct 25, 2023
1 parent 1520dfd commit 62dc896
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/org/computate/vertx/config/ComputateConfigKeys.java
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,18 @@ public class ComputateConfigKeys {
**/
public static final String ZOOKEEPER_HOSTS = "ZOOKEEPER_HOSTS";

/**
*
* The possible value for the policy are:
* - exponential_backoff (default)
* - bounded_exponential_backoff
* - one_time
* - n_times
* - forever
* - until_elapsed
*/
public static final String ZOOKEEPER_RETRY_POLICY = "ZOOKEEPER_RETRY_POLICY";

/**
* max number of times to retry
*/
Expand Down

0 comments on commit 62dc896

Please sign in to comment.