Skip to content

Commit

Permalink
OLE-9245 : Batch delete job failed
Browse files Browse the repository at this point in the history
  • Loading branch information
NSSuresh11 committed Aug 4, 2017
1 parent 8b134c3 commit e50025b
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 e50025b

Please sign in to comment.