Skip to content

Commit

Permalink
Merge pull request #966 from WildMeOrg/remove-unneeded-indexing
Browse files Browse the repository at this point in the history
Remove an unnecessary and functional blocker indexing line
  • Loading branch information
holmbergius authored Jan 2, 2025
2 parents 5ff06db + 411f5a7 commit 075d547
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void doPost(HttpServletRequest request, HttpServletResponse response)
}
if (!locked) {
myShepherd.commitDBTransaction();
if (enc2remove != null) enc2remove.opensearchIndexDeep();
//if (enc2remove != null) enc2remove.opensearchIndexDeep();
out.println(ServletUtilities.getHeader(request));
response.setStatus(HttpServletResponse.SC_OK);
out.println("<strong>Success:</strong> Encounter #" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void doPost(HttpServletRequest request, HttpServletResponse response)
if (!locked) {
myShepherd.commitDBTransaction();
// out.println(ServletUtilities.getHeader(request));
if (enc2remove != null) enc2remove.opensearchIndexDeep();
//if (enc2remove != null) enc2remove.opensearchIndexDeep();
out.println("<strong>Success:</strong> Encounter " +
request.getParameter("number") +
" was successfully removed from occurrence " + old_name + ".");
Expand Down

0 comments on commit 075d547

Please sign in to comment.