various improvements

This commit is contained in:
Jay
2026-04-24 10:59:33 -04:00
parent e32bbc99d8
commit 4ac2c488ad
14 changed files with 41 additions and 32 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ type RetryManager struct {
func NewRetryManager(config *RetryConfig) *RetryManager {
// saturationCount: retry count at which base delay meets or exceeds MaxDelay.
// Conservative by one to preserve jitter variance near the boundary.
// Conservative by two to preserve jitter variance near the boundary.
saturation := 0
if config != nil &&
config.InitialDelay > 0 &&