From: Bill Erickson Date: Tue, 9 Jul 2019 14:31:04 +0000 (-0400) Subject: data sync continued / _id fix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=981d4508ba41a6d51fa979a5cc6935893f9a7600;p=working%2FEvergreen.git data sync continued / _id fix Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Elastic.pm b/Open-ILS/src/perlmods/lib/OpenILS/Elastic.pm index 372d31acaa..424b1217b9 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Elastic.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Elastic.pm @@ -169,7 +169,7 @@ sub delete_documents { $result = $self->es->delete_by_query( index => $self->index_name, type => 'record', - body => {query => {terms => {id => $ids}}} + body => {query => {terms => {_id => $ids}}} ); };