()
| 582 | } |
| 583 | |
| 584 | fn retry_config() -> RetryConfig { |
| 585 | RetryConfig::adaptive() |
| 586 | .with_max_attempts(3) |
| 587 | .with_max_backoff(MAX_RETRY_DELAY_DURATION) |
| 588 | } |
| 589 | |
| 590 | pub fn stalled_stream_protection_config() -> StalledStreamProtectionConfig { |
| 591 | StalledStreamProtectionConfig::enabled() |