File tree 1 file changed +2
-2
lines changed
server/src/test/java/org/opensearch/index/translog
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 55
55
import java .util .Set ;
56
56
import java .util .TreeSet ;
57
57
import java .util .concurrent .CountDownLatch ;
58
+ import java .util .concurrent .TimeUnit ;
58
59
import java .util .concurrent .atomic .AtomicLong ;
59
60
import java .util .function .Supplier ;
60
61
import java .util .stream .Collectors ;
@@ -310,7 +311,6 @@ public void testIndexDeletionWithNoPinnedTimestampButRecentFiles() throws Except
310
311
}
311
312
312
313
@ Override
313
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/15731" )
314
314
public void testSimpleOperationsUpload () throws Exception {
315
315
ArrayList <Translog .Operation > ops = new ArrayList <>();
316
316
@@ -366,7 +366,7 @@ public void testSimpleOperationsUpload() throws Exception {
366
366
10 ,
367
367
blobStoreTransferService .listAll (getTranslogDirectory ().add (DATA_DIR ).add (String .valueOf (primaryTerm .get ()))).size ()
368
368
);
369
- });
369
+ }, 60 , TimeUnit . SECONDS );
370
370
}
371
371
372
372
@ Override
You can’t perform that action at this time.
0 commit comments