fix: enhance error handling in extractor and loader processes; ensure proper job error propagation and logging

This commit is contained in:
2026-04-12 20:11:19 -05:00
parent 01780b4b02
commit 5633dc98d0
5 changed files with 46 additions and 14 deletions

View File

@@ -37,11 +37,11 @@ func JobErrorHandler(ctx context.Context, chErrorsIn <-chan JobError) error {
}
if err.ShouldCancelJob {
log.Error(err.Msg, " - ", err.Prev)
log.Errorf("(Fatal job error) - %v - %v", err.Msg, err.Prev)
return &err
}
log.Error(err.Msg, " - ", err.Prev)
log.Errorf("%v - %v", err.Msg, err.Prev)
}
}
}