diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-02-12 11:52:32 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-02-12 11:52:32 -0800 |
commit | bc66be001605454b48a36dd38bffee405bf469ab (patch) | |
tree | 9f49ebb37089501b153fac677fbf356c3213ab93 /fatcat_scholar/work_pipeline.py | |
parent | 195d29b9b08082776406483a72a6bbb8e49d1b9c (diff) | |
download | fatcat-scholar-bc66be001605454b48a36dd38bffee405bf469ab.tar.gz fatcat-scholar-bc66be001605454b48a36dd38bffee405bf469ab.zip |
more seaweedfs hacks
Diffstat (limited to 'fatcat_scholar/work_pipeline.py')
-rw-r--r-- | fatcat_scholar/work_pipeline.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fatcat_scholar/work_pipeline.py b/fatcat_scholar/work_pipeline.py index cb96274..282378b 100644 --- a/fatcat_scholar/work_pipeline.py +++ b/fatcat_scholar/work_pipeline.py @@ -171,6 +171,10 @@ class WorkPipeline: # print(raw_text) except minio.error.NoSuchKey: return None + except urllib3.exceptions.MaxRetryError: + # HACK: work around broken seaweedfs keys + print(f"seaweedfs failure: sha1hex={fe.sha1}", file=sys.stderr) + return None return dict( raw_text=raw_text, release_ident=release_ident, file_ident=fe.ident, ) @@ -202,6 +206,10 @@ class WorkPipeline: # print(grobid_xml) except minio.error.NoSuchKey: return None + except urllib3.exceptions.MaxRetryError: + # HACK: work around broken seaweedfs keys + print(f"seaweedfs failure: sha1hex={fe.sha1}", file=sys.stderr) + return None return dict( html_meta=html_meta, |