onError wasn't properly retrying tag throttled errors
This commit is contained in:
parent
66228343f1
commit
e9b9f0e845
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue