Skip to content

Commit

Permalink
Muting TranslogTransferManagerTests on Windows. (opensearch-project#5924
Browse files Browse the repository at this point in the history
)

Signed-off-by: Marc Handalian <handalm@amazon.com>

Signed-off-by: Marc Handalian <handalm@amazon.com>
  • Loading branch information
mch2 authored and nknize committed Jan 19, 2023
1 parent 9d903bf commit ea46ae0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
package org.opensearch.index.translog.transfer;

import org.apache.lucene.tests.util.LuceneTestCase;
import org.apache.lucene.util.Constants;
import org.mockito.Mockito;
import org.opensearch.action.ActionListener;
import org.opensearch.common.blobstore.BlobPath;
Expand Down Expand Up @@ -49,6 +50,8 @@ public class TranslogTransferManagerTests extends OpenSearchTestCase {
@Override
public void setUp() throws Exception {
super.setUp();
// Muting this test on windows until https://github.com/opensearch-project/OpenSearch/issues/5923
assumeFalse("Test does not run on Windows", Constants.WINDOWS);
primaryTerm = randomNonNegativeLong();
generation = randomNonNegativeLong();
minTranslogGeneration = randomLongBetween(0, generation);
Expand Down

0 comments on commit ea46ae0

Please sign in to comment.