We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a372a4f commit 3350028Copy full SHA for 3350028
server/src/internalClusterTest/java/org/elasticsearch/snapshots/SharedClusterSnapshotRestoreIT.java
@@ -19,6 +19,7 @@
19
20
package org.elasticsearch.snapshots;
21
22
+import org.apache.lucene.util.LuceneTestCase;
23
import org.elasticsearch.ElasticsearchException;
24
import org.elasticsearch.ExceptionsHelper;
25
import org.elasticsearch.Version;
@@ -147,6 +148,8 @@
147
148
import static org.hamcrest.Matchers.nullValue;
149
import static org.hamcrest.Matchers.startsWith;
150
151
+// The tests in here do a lot of state updates and other writes to disk and are slowed down too much by WindowsFS
152
+@LuceneTestCase.SuppressFileSystems(value = "WindowsFS")
153
public class SharedClusterSnapshotRestoreIT extends AbstractSnapshotIntegTestCase {
154
155
@Override
0 commit comments