Skip to content

Commit

Permalink
reduce default allowed faults to 5 for builder circuit breaker (Conse…
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr authored Mar 6, 2023
1 parent 16e136b commit 122241a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class ExecutionLayerConfiguration {
public static final boolean DEFAULT_BUILDER_CIRCUIT_BREAKER_ENABLED = true;
public static final int DEFAULT_BUILDER_CIRCUIT_BREAKER_WINDOW = 32;
public static final int DEFAULT_BUILDER_CIRCUIT_BREAKER_ALLOWED_FAULTS = 8;
public static final int DEFAULT_BUILDER_CIRCUIT_BREAKER_ALLOWED_FAULTS = 5;
public static final int DEFAULT_BUILDER_CIRCUIT_BREAKER_ALLOWED_CONSECUTIVE_FAULTS = 3;

public static final int BUILDER_CIRCUIT_BREAKER_WINDOW_HARD_CAP = 64;
Expand Down

0 comments on commit 122241a

Please sign in to comment.