Skip to content

Commit

Permalink
Fix HeadJob Hash (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
vieting authored Jan 29, 2024
1 parent 9bddf05 commit 498f1f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions text/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ def __init__(self, text_file, num_lines=None, ratio=None, zip_output=True):
self.zip_output = zip_output

self.out = self.output_path("out.gz") if self.zip_output else self.output_path("out")
if not self.zip_output:
self.out.hash_overwrite = (self, "out.gz") # keep old hashing behavior
self.length = self.output_var("length")

def tasks(self):
Expand Down

0 comments on commit 498f1f1

Please sign in to comment.