Error bubbling in $transaction client
We've written a helper decorator to wrap certain functions in a transaction.
Anytime an error is thrown within the applied method, I end up with a
unhandledRejection: Error:
. This happens even when all methods are synchronous (e.g. removing the async
from async (txn)
). This is preventing me from being able to catch errors from outside the transaction.
Please advise on how to proceed, thanks!0 Replies