Skip to content

Commit

Permalink
Add more wait time to assertBusy to fix RemoteFsTimestampAwareTranslo…
Browse files Browse the repository at this point in the history
…gTests.testSimpleOperationsUpload

Signed-off-by: Sachin Kale <[email protected]>
  • Loading branch information
sachinpkale committed Sep 9, 2024
1 parent 5642ce7 commit b37ea44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
import java.util.Set;
import java.util.TreeSet;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
import java.util.function.Supplier;
import java.util.stream.Collectors;
Expand Down Expand Up @@ -310,7 +311,6 @@ public void testIndexDeletionWithNoPinnedTimestampButRecentFiles() throws Except
}

@Override
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/15731")
public void testSimpleOperationsUpload() throws Exception {
ArrayList<Translog.Operation> ops = new ArrayList<>();

Expand Down Expand Up @@ -366,7 +366,7 @@ public void testSimpleOperationsUpload() throws Exception {
10,
blobStoreTransferService.listAll(getTranslogDirectory().add(DATA_DIR).add(String.valueOf(primaryTerm.get()))).size()
);
});
}, 60, TimeUnit.SECONDS);
}

@Override
Expand Down

0 comments on commit b37ea44

Please sign in to comment.