Skip to content

Commit d91d055

Browse files
Fix flaky test RemoteSegmentTransferTrackerTests.testGetInflightUploadBytes (#17128) (#17129)
(cherry picked from commit 7e51088) Signed-off-by: Sachin Kale <sachinpkale@gmail.com> 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>
1 parent 3b27f4d commit d91d055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/test/java/org/opensearch/index/remote/RemoteSegmentTransferTrackerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public void testGetInflightUploadBytes() {
258258
directoryFileTransferTracker,
259259
remoteStoreStatsTrackerFactory.getMovingAverageWindowSize()
260260
);
261-
long bytesStarted = randomLongBetween(10000, 100000);
261+
long bytesStarted = randomLongBetween(12000, 100000);
262262
long bytesSucceeded = randomLongBetween(1000, 10000);
263263
long bytesFailed = randomLongBetween(100, 1000);
264264
transferTracker.addUploadBytesStarted(bytesStarted);

0 commit comments

Comments
 (0)