Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ public void cleanDataFromCollection() throws IOException, SolrServerException {
}


public void cleanDataFromCollection(String query) throws IOException, SolrServerException {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not needed within the framework, just use a wrapper class and call these two methods

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@alero the processDelete() as well as processCommit both are private methods and thus cannot be called from wrapper class too!!

processDelete(query);
processCommit();
}


public void waitForAsyncCommit() {
// TODO: Async needs a callback solution
try {
Expand Down