Skip to content

Commit

Permalink
Merge pull request #1093 from NSSuresh11/OLE-9245
Browse files Browse the repository at this point in the history
OLE-9245 : Batch delete job failed
  • Loading branch information
NSSuresh11 authored Aug 4, 2017
2 parents 8b134c3 + e50025b commit 2ec60d3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ public void commitDocumentToSolr(List<SolrInputDocument> solrInputDocuments){
}

public void deleteBibDocumentFromSolr(String bibId) {
String query = BIB_ID + bibId;
String query = "bibIdentifier:" + bibId + " OR " + "id:" + bibId;
// String query = BIB_ID + bibId;
getSolrRequestReponseHandler().deleteFromSolr(query);
}

Expand Down

0 comments on commit 2ec60d3

Please sign in to comment.