Skip to content

Commit

Permalink
Merge pull request #93 from ml054/v6.0
Browse files Browse the repository at this point in the history
Merge v5.4 -> V6.0
  • Loading branch information
ml054 authored Mar 8, 2024
2 parents 09e2583 + 3c21d64 commit 7b05630
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/net/ravendb/client/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ public static class CompareExchange {

public static class Indexes {
public static final String INDEXING_STATIC_SEARCH_ENGINE_TYPE = "Indexing.Static.SearchEngineType";
public static final String INDEXING_AUTO_SEARCH_ENGINE_TYPE = "Indexing.Auto.SearchEngineType";
}

public static class Identities {
Expand Down
4 changes: 4 additions & 0 deletions src/test/java/net/ravendb/client/RemoteTestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ public DocumentStore getDocumentStore(String database, boolean secured, Duration
DatabaseRecord databaseRecord = new DatabaseRecord();
databaseRecord.setDatabaseName(name);

// force lucene on database level
databaseRecord.getSettings().put(Constants.Indexes.INDEXING_STATIC_SEARCH_ENGINE_TYPE, "Lucene");
databaseRecord.getSettings().put(Constants.Indexes.INDEXING_AUTO_SEARCH_ENGINE_TYPE, "Lucene");

customizeDbRecord(databaseRecord);
if (customizeDatabaseRecord != null) {
customizeDatabaseRecord.accept(databaseRecord);
Expand Down

0 comments on commit 7b05630

Please sign in to comment.