Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
#360 pass transaction too large upper
  • Loading branch information
otselnik committed Dec 7, 2021
commit 57adc5b31100e2cb24267ca5109b41b2c9b8005e
2 changes: 2 additions & 0 deletions proxy/common_neon/transaction_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,8 @@ def call_continue(self):
return_result = self.call_continue_bucked()
except Exception as err:
logger.debug("call_continue_bucked_combined exception: {}".format(str(err)))
if str(err).startswith("transaction too large:"):
raise

if return_result is not None:
return return_result
Expand Down