aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-08-22 23:44:01 +0200
committerBryan Newbold <bnewbold@robocracy.org>2019-08-22 23:44:01 +0200
commitfbc03b9bcce0fb5066da574021744ccae2f28b9e (patch)
tree8893fc3bfdb4d4a4467959a29a386c7a24c423ae /python
parent8b773a23b8577f946582d9efa8dd66799d318fef (diff)
downloadfatcat-fbc03b9bcce0fb5066da574021744ccae2f28b9e.tar.gz
fatcat-fbc03b9bcce0fb5066da574021744ccae2f28b9e.zip
web search: container_id, not _ident
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/search.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py
index 5b7bdbf6..446a851a 100644
--- a/python/fatcat_web/search.py
+++ b/python/fatcat_web/search.py
@@ -215,7 +215,7 @@ def get_elastic_container_stats(ident, issnl=None):
query = {
"size": 0,
"query": {
- "term": { "container_ident": ident }
+ "term": { "container_id": ident }
},
"aggs": { "container_stats": { "filters": { "filters": {
"in_web": { "term": { "in_web": "true" } },