diff --git a/registry-pipelines/src/main/java/org/gbif/registry/pipelines/DefaultRegistryPipelinesHistoryTrackingService.java b/registry-pipelines/src/main/java/org/gbif/registry/pipelines/DefaultRegistryPipelinesHistoryTrackingService.java index 2053d7927..e91b12a8f 100644 --- a/registry-pipelines/src/main/java/org/gbif/registry/pipelines/DefaultRegistryPipelinesHistoryTrackingService.java +++ b/registry-pipelines/src/main/java/org/gbif/registry/pipelines/DefaultRegistryPipelinesHistoryTrackingService.java @@ -396,9 +396,11 @@ public RunPipelineResponse runPipelineAttempt( errorMessage .append("Unable to use pipeline step ") .append(stepName) - .append(" with key ") - .append(step.getKey()) - .append(" to rerun pipelines because the message body is empty. Please try running it from the step before or the previous attempt\n"); + .append(", attempt ") + .append(attempt) + .append(", execution key ") + .append(lastestExecution.getKey()) + .append(", to rerun pipelines because the message body is empty. Please try running it from the step before or the previous attempt\n"); } else { try { PipelineBasedMessage message = null;