diff --git a/pkg/crds/controllers/batch/batchjob_controller_helpers.go b/pkg/crds/controllers/batch/batchjob_controller_helpers.go index 6fcfadfc89..7c5bc50e48 100644 --- a/pkg/crds/controllers/batch/batchjob_controller_helpers.go +++ b/pkg/crds/controllers/batch/batchjob_controller_helpers.go @@ -636,9 +636,6 @@ func (r *BatchJobReconciler) updateCompletedTimestamp(ctx context.Context, batch func (r *BatchJobReconciler) persistJobToS3(batchJob batch.BatchJob) error { return parallel.RunFirstErr( func() error { - if batchJob.Status.Status != status.JobSucceeded && batchJob.Status.Status != status.JobCompletedWithFailures { - return nil - } return r.Config.SaveJobMetrics(r, batchJob) }, func() error {