Closed

Description
This issue is automatically created based on existing pull request: #27134: Handling exception on individual callback
Description
This PR changes the behaviour how callbacks are executed after DB changes are committed. The issue was if there is an exception from one call back it results in failing other callbacks as well.
So put the try/catch on individual callback instead of entire foreach block.
Manual testing scenarios (*)
- Have multiple callbacks having one with fatal error.
- The subsequenct callbackss after one with fatal error won't get executed.