Skip to content

Commit c5d34cd

Browse files
authored
Update documentation for slow call thresholds
1 parent 27a212c commit c5d34cd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

cloudplatform/resilience-api/src/main/java/com/sap/cloud/sdk/cloudplatform/resilience/ResilienceConfiguration.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,8 @@ public static final class CircuitBreakerConfiguration
477477
* The duration threshold above which calls are considered as slow and increase the slow call rate. When the
478478
* percentage of slow calls is equal to or greater than {@link #slowCallRateThreshold}, the CircuitBreaker
479479
* transitions to <i>OPEN</i> and starts short-circuiting calls.
480+
*
481+
* @since 5.29.0
480482
*/
481483
@Nonnull
482484
private Duration slowCallDurationThreshold = DEFAULT_SLOW_CALL_DURATION_THRESHOLD;
@@ -486,6 +488,8 @@ public static final class CircuitBreakerConfiguration
486488
* when the call duration is greater than {@link #slowCallDurationThreshold}. When the percentage of slow calls
487489
* is equal to or greater than the threshold, the CircuitBreaker transitions to <i>OPEN</i> and starts
488490
* short-circuiting calls.
491+
*
492+
* @since 5.29.0
489493
*/
490494
private float slowCallRateThreshold = DEFAULT_SLOW_CALL_RATE_THRESHOLD;
491495

0 commit comments

Comments
 (0)