Retry Logic
Configuration
Session.configure do |config|
config.enable_retry = true
config.retry_config = Session::RetryConfig.new(
max_attempts: 3,
base_delay: 100.milliseconds,
max_delay: 5.seconds,
backoff_multiplier: 2.0,
jitter: 0.1
)
endProperties
Property
Type
Default
Description
How Backoff Works
Store Integration
Direct Usage
Retry Predicates
Predicate
Retries On
See Also
Last updated
Was this helpful?