elasticizer: added scroll_clear to null hits as well

master
Erik de Vries 5 years ago
parent 75623856f7
commit ac37d836f5

@ -93,6 +93,7 @@ elasticizer <- function(query, src = T, index = 'maml', es_pwd = .rs.askForPassw
} }
json <- fromJSON(res) json <- fromJSON(res)
if (json$hits$total$value == 0) { if (json$hits$total$value == 0) {
scroll_clear(conn = conn, x = json$`_scroll_id`)
return(json) return(json)
} else { } else {
out <- jsonlite:::flatten(json$hits$hits) out <- jsonlite:::flatten(json$hits$hits)

Loading…
Cancel
Save