mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-04 19:30:13 +00:00
size limit for ryd missing rating query
This commit is contained in:
parent
1c27934d77
commit
49cd272557
@ -97,11 +97,12 @@ class Reindex:
|
|||||||
"""get all videos without rating if ryd integration is enabled"""
|
"""get all videos without rating if ryd integration is enabled"""
|
||||||
headers = {"Content-type": "application/json"}
|
headers = {"Content-type": "application/json"}
|
||||||
data = {
|
data = {
|
||||||
|
"size": 200,
|
||||||
"query": {
|
"query": {
|
||||||
"bool": {
|
"bool": {
|
||||||
"must_not": [{"exists": {"field": "stats.average_rating"}}]
|
"must_not": [{"exists": {"field": "stats.average_rating"}}]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
query_str = json.dumps(data)
|
query_str = json.dumps(data)
|
||||||
url = self.es_url + "/ta_video/_search"
|
url = self.es_url + "/ta_video/_search"
|
||||||
|
Loading…
Reference in New Issue
Block a user