Custom flow on task_sla table is not triggered when repairing a paused SLAIssue Custom flow on task_sla table is not triggered when repairing a paused SLA Steps to produce: Create test SLA called :Test SLA Breached Setup on table Incidenttrigger condition on priority 3, and pause condition on Resolved Create flow called : SLA breach test flow Trigger on table task_slaTrigger condition: create/updateCondition: Has Breached =trueSLA name=Test SLA BreachedAdd action to sla related incident short description to Hello. Create Inicident on priority as 3 , save and see the SLA :Test SLA Breached attached in progress stateClick Repair SLA and see the short description is changed to Hello.Check flow context, there is context created for flow: SLA breach test flow.Change short description to other values and save.Change state to Resolved and save.The SLA is in paused state.Run Repair SLA, notice the short description is unchanged.Check flow context, there is no context created for flow: SLA breach test flow. CauseWhen repairing an SLA, workflow/flow is turned off. It was done specifically to ensure that nothing messes with the records that are being used to repair the SLA. For the SLA current is in paused/cancelled/completed, then related flow will not be triggered. For other state of SLA, it will resume the workflow/flow as designed.ResolutionThis is the expected behaviour. When repairing an SLA, workflow/flow is turned off. It was done specifically to ensure that nothing messes with the records that are being used to repair the SLA. Checking the script includes: RepairTaskSLAThere are some scripts like below:var taskSLAFlow = new TaskSLAFlow(this.taskSLAgr, this.slaDefGR);taskSLAFlow.setRepairMode(true);taskSLAFlow.start();var taskSLAState = this.getCurrentState();switch(taskSLAState) {case TaskSLA.STATE_PAUSED:taskSLAFlow.pause();break;case TaskSLA.STATE_CANCELLED:case TaskSLA.STATE_COMPLETED:taskSLAFlow.cancel();break;}} For the SLA current is paused/canceled/completed, the related flow will not be triggered.