Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1339: Fix large exponent issue in BackoffMachine by tracking backoff incrementally #1352

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/api/backoff.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ class BackoffMachine {
BackoffMachine({
this.firstBound = const Duration(milliseconds: 100),
this.maxBound = const Duration(seconds: 10),
}) : assert(firstBound <= maxBound);
}) : assert(firstBound <= maxBound),
_currentBound = firstBound; // Initialize _currentBound;

/// How many waits have completed so far.
///
Expand Down Expand Up @@ -82,13 +83,15 @@ class BackoffMachine {
/// the smallest durations up to one microsecond instead of down to zero.
/// Because in the real world any delay takes nonzero time, this mainly
/// affects tests that use fake time, and keeps their behavior more realistic.
Duration _currentBound; // New variable to track backoff time incrementally
Future<void> wait() async {
final bound = _minDuration(maxBound,
firstBound * pow(base, _waitsCompleted));
_currentBound);
final duration = debugDuration ?? _maxDuration(const Duration(microseconds: 1),
bound * Random().nextDouble());
await Future<void>.delayed(duration);
_waitsCompleted++;
_currentBound = _minDuration(maxBound, _currentBound*base); // Update backoff duration safely
}
}

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Thu Feb 13 09:46:23 IST 2025
gradle.version=8.9
Empty file.