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 8463655 commit fe331b5Copy full SHA for fe331b5
src/test/java/org/elasticsearch/index/store/StoreTest.java
@@ -270,7 +270,7 @@ public void testWriteLegacyChecksums() throws IOException {
270
Store.LegacyChecksums checksums = new Store.LegacyChecksums();
271
Map<String, StoreFileMetaData> legacyMeta = new HashMap<>();
272
for (String file : store.directory().listAll()) {
273
- if (file.equals("write.lock") || file.equals(IndexFileNames.OLD_SEGMENTS_GEN)) {
+ if (file.equals("write.lock") || file.equals(IndexFileNames.OLD_SEGMENTS_GEN) || file.startsWith("extra")) {
274
continue;
275
}
276
BytesRef hash = new BytesRef();
0 commit comments