onError wasn't properly retrying tag throttled errors

This commit is contained in:
A.J. Beamon 2020-04-30 21:12:34 -07:00
parent 66228343f1
commit e9b9f0e845
1 changed files with 2 additions and 1 deletions

View File

@ -3455,7 +3455,8 @@ Future<Void> Transaction::onError( Error const& e ) {
e.code() == error_code_database_locked ||
e.code() == error_code_proxy_memory_limit_exceeded ||
e.code() == error_code_process_behind ||
e.code() == error_code_batch_transaction_throttled)
e.code() == error_code_batch_transaction_throttled ||
e.code() == error_code_tag_throttled)
{
if(e.code() == error_code_not_committed)
++cx->transactionsNotCommitted;