Skip to content

Commit

Permalink
Fix error state typo (#4898)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Jun 14, 2021
1 parent 05c5621 commit ec9b569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ def add_task(
return
if ts.state in IN_PLAY:
return
if ts.state == "erred":
if ts.state == "error":
ts.exception = None
ts.traceback = None
else:
Expand Down

0 comments on commit ec9b569

Please sign in to comment.