bazelbuild / bazelisk

A user-friendly launcher for Bazel.
Apache License 2.0
1.95k stars 300 forks source link

Fix TestShouldUseExponentialBackoffIfNoRetryHeader bounds #530

Closed afq984 closed 5 months ago

afq984 commented 5 months ago

The lower bound has an off-by-one error: 2^0 + 2^1 + ... + 2^(n-1) sums up to 2^n-1.

Verified with:

go test -count=1000 -run TestShouldUseExponentialBackoffIfNoRetryHeader ./httputil -v