(
ctx: ExecutionContext,
loopId: string,
loopType: string,
errorMessage: string,
inputData?: any
)
| 197 | } |
| 198 | |
| 199 | private async addLoopErrorLog( |
| 200 | ctx: ExecutionContext, |
| 201 | loopId: string, |
| 202 | loopType: string, |
| 203 | errorMessage: string, |
| 204 | inputData?: any |
| 205 | ): Promise<void> { |
| 206 | await addSubflowErrorLog( |
| 207 | ctx, |
| 208 | loopId, |
| 209 | 'loop', |
| 210 | errorMessage, |
| 211 | { loopType, ...inputData }, |
| 212 | this.contextExtensions |
| 213 | ) |
| 214 | } |
| 215 | |
| 216 | storeLoopNodeOutput( |
| 217 | ctx: ExecutionContext, |
no test coverage detected