mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 10:56:48 +00:00
Fix clearing ES scroll
This commit is contained in:
parent
6537e9ef69
commit
5cc7199661
@ -687,7 +687,7 @@ class EventBLL(object):
|
|||||||
events = [doc["_source"] for doc in safe_get(es_res, "hits/hits", default=[])]
|
events = [doc["_source"] for doc in safe_get(es_res, "hits/hits", default=[])]
|
||||||
next_scroll_id = es_res.get("_scroll_id")
|
next_scroll_id = es_res.get("_scroll_id")
|
||||||
if next_scroll_id and not events:
|
if next_scroll_id and not events:
|
||||||
self.es.clear_scroll(scroll_id=next_scroll_id)
|
self.clear_scroll(next_scroll_id)
|
||||||
next_scroll_id = self.empty_scroll
|
next_scroll_id = self.empty_scroll
|
||||||
|
|
||||||
return events, total_events, next_scroll_id
|
return events, total_events, next_scroll_id
|
||||||
|
Loading…
Reference in New Issue
Block a user