aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-24 18:16:34 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-11-24 18:16:36 -0800
commit0584499e7887d8c1ff216b27652d28c8377c3a17 (patch)
tree917108979761378742f18523b1a6eb4851b18b90 /python/fatcat_tools
parente72d61e60c43911b6d77c4842951441235561dcf (diff)
downloadfatcat-0584499e7887d8c1ff216b27652d28c8377c3a17.tar.gz
fatcat-0584499e7887d8c1ff216b27652d28c8377c3a17.zip
ES release transform: handle redirected containers better
Despite the inline comment, we were not actually grabbing the "redirected" ident correctly, meaning some counts would not be accurate.
Diffstat (limited to 'python/fatcat_tools')
-rw-r--r--python/fatcat_tools/transforms/elasticsearch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/transforms/elasticsearch.py b/python/fatcat_tools/transforms/elasticsearch.py
index c16053ec..a6d85f7e 100644
--- a/python/fatcat_tools/transforms/elasticsearch.py
+++ b/python/fatcat_tools/transforms/elasticsearch.py
@@ -284,7 +284,7 @@ def _rte_container_helper(container: ContainerEntity, release_year: Optional[int
t["container_name"] = container.name
# this is container.ident, not release.container_id, because there may
# be a redirect involved
- t["container_id"] = container.ident
+ t["container_id"] = container.redirect or container.ident
t["container_issnl"] = container.issnl
issns = [container.issnl, container.issne, container.issnp]
issns = list(set([i for i in issns if i]))