Fix logic bug in prior code
This commit is contained in:
@@ -160,7 +160,7 @@ class TransactionStore(SQLBaseStore):
|
||||
allow_none=True,
|
||||
)
|
||||
|
||||
if result and result["retry_last_ts"] > 0:
|
||||
if result and result["retry_last_ts"] and result["retry_last_ts"] > 0:
|
||||
return result
|
||||
else:
|
||||
return None
|
||||
|
||||
Reference in New Issue
Block a user