Skip to content

Commit

Permalink
GEODE-2475: Upgrade Lucene version to 6.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuynh1 committed Feb 13, 2017
1 parent f19ccfd commit 5d98a8c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,13 @@ public void sync(Collection<String> names) throws IOException {
}

@Override
public void renameFile(String source, String dest) throws IOException {
public void syncMetaData() throws IOException {
ensureOpen();
// Region does not need to sync to disk
}

@Override
public void rename(String source, String dest) throws IOException {
ensureOpen();
fs.renameFile(source, dest);
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependency-versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ junit.version = 4.12
junit-quickcheck.version = 0.7
JUnitParams.version = 1.0.6
log4j.version = 2.7
lucene.version = 6.0.0
lucene.version = 6.4.1
mockito-core.version = 1.10.19
mockrunner.version = 1.1.2
mortbay-jetty-servlet-api.version=2.5.20110712
Expand Down

0 comments on commit 5d98a8c

Please sign in to comment.