Reduce minimum maxbackoff to 5 seconds

This commit is contained in:
Neil Alexander 2025-06-22 16:37:18 +01:00
parent 81543e9cc0
commit ffc0dc92e0
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -28,7 +28,7 @@ const (
)
const defaultBackoffLimit = time.Second << 12 // 1h8m16s
const minimumBackoffLimit = time.Second * 30
const minimumBackoffLimit = time.Second * 5
type links struct {
phony.Inbox