Skip to content

Commit

Permalink
Fix flaky test RemoteSegmentTransferTrackerTests.testGetInflightUploa…
Browse files Browse the repository at this point in the history
…dBytes (#17128) (#17129)

(cherry picked from commit 7e51088)

Signed-off-by: Sachin Kale <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 3b27f4d commit d91d055
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public void testGetInflightUploadBytes() {
directoryFileTransferTracker,
remoteStoreStatsTrackerFactory.getMovingAverageWindowSize()
);
long bytesStarted = randomLongBetween(10000, 100000);
long bytesStarted = randomLongBetween(12000, 100000);
long bytesSucceeded = randomLongBetween(1000, 10000);
long bytesFailed = randomLongBetween(100, 1000);
transferTracker.addUploadBytesStarted(bytesStarted);
Expand Down

0 comments on commit d91d055

Please sign in to comment.