diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-15 18:59:08 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-15 18:59:08 +0200 |
commit | f55cce2252d0f82b3a0b077dcfb6920ca7d7ee2d (patch) | |
tree | e8564437986d7a804e52103b55fe756f8daeb244 /python | |
parent | 1cb818435d2c0094d77f541b3f57c5a18fd34888 (diff) | |
download | refcat-f55cce2252d0f82b3a0b077dcfb6920ca7d7ee2d.tar.gz refcat-f55cce2252d0f82b3a0b077dcfb6920ca7d7ee2d.zip |
tasks: ignore exit code 141 for now
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 2d31068..9a11653 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1515,7 +1515,7 @@ class CDXURL(Refcat): tmpdir=self.tmpdir, limit=self.limit, input=self.input().path, - cache=self.cache) + cache=self.cache, ignoremap={141: "todo: root cause"}) luigi.LocalTarget(output).move(self.output().path) |