Skip to content

Commit

Permalink
fix hashkey computation (#4985)
Browse files Browse the repository at this point in the history
  • Loading branch information
belforte authored Apr 9, 2021
1 parent cbbe900 commit c9b6aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/CRABClient/JobType/UserTarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def upload(self, filecacheurl=None):
data = f.read(BUF_SIZE)
if not data:
break
hasher.update(data)
hasher.update(data)
hashkey = hasher.hexdigest()
cachename = "%s.tgz" % hashkey
# current code requires a taskname to extract username. Any dummy one will do
Expand Down

0 comments on commit c9b6aa2

Please sign in to comment.