Skip to content

Commit

Permalink
Allow to abort() a failed transaction.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenstroeger committed Dec 1, 2020
1 parent f252114 commit 810a03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction/_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Status(object):
DOOMED = "Doomed"

# commit() or commit(True) or abort() raised an exception. All further attempts
# to commit or join or abort this transaction will raise TransactionFailedError.
# to commit or join this transaction will raise TransactionFailedError.
COMMITFAILED = "Commit failed"
ABORTFAILED = "Abort failed"

Expand Down

0 comments on commit 810a03c

Please sign in to comment.