Skip to content

Commit

Permalink
Mute testCustomDataPaths on Windows
Browse files Browse the repository at this point in the history
See #45333
  • Loading branch information
Andrey Ershov committed Aug 8, 2019
1 parent de8b9f3 commit 671e1ad
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.elasticsearch.env;

import org.apache.lucene.index.SegmentInfos;
import org.apache.lucene.util.Constants;
import org.elasticsearch.common.util.set.Sets;
import org.elasticsearch.core.internal.io.IOUtils;
import org.apache.lucene.util.LuceneTestCase;
Expand Down Expand Up @@ -354,6 +355,7 @@ public void run() {
}

public void testCustomDataPaths() throws Exception {
assumeFalse("Fails on Windows, see https://github.com/elastic/elasticsearch/issues/45333", Constants.WINDOWS);
String[] dataPaths = tmpPaths();
NodeEnvironment env = newNodeEnvironment(dataPaths, "/tmp", Settings.EMPTY);

Expand Down

0 comments on commit 671e1ad

Please sign in to comment.