| 1073 | } |
| 1074 | |
| 1075 | type errorHandlerAdapter struct { |
| 1076 | errorHandler ErrorHandler |
| 1077 | } |
| 1078 | |
| 1079 | func (e *errorHandlerAdapter) HandleError(ctx context.Context, job *rivertype.JobRow, err error) *jobexecutor.ErrorHandlerResult { |
| 1080 | result := e.errorHandler.HandleError(ctx, job, err) |
nothing calls this directly
no outgoing calls
no test coverage detected