From 775fac4e636c4d6d04620e904487b252399ba342 Mon Sep 17 00:00:00 2001 From: Anna Geller Date: Mon, 25 Nov 2024 22:17:48 +0100 Subject: [PATCH] fix: wording --- core/src/main/java/io/kestra/core/runners/ExecutorService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/kestra/core/runners/ExecutorService.java b/core/src/main/java/io/kestra/core/runners/ExecutorService.java index d90c786303c..c15d6e8c770 100644 --- a/core/src/main/java/io/kestra/core/runners/ExecutorService.java +++ b/core/src/main/java/io/kestra/core/runners/ExecutorService.java @@ -1090,7 +1090,7 @@ public Executor handleExecutionChangedSLA(Executor executor) throws QueueExcepti public Executor processViolation(RunContext runContext, Executor executor, Violation violation) throws QueueException { Execution newExecution = switch (violation.behavior()) { case FAIL -> { - runContext.logger().error("Flow fail due to SLA '{}' violated: {}", violation.slaId(), violation.reason()); + runContext.logger().error("Execution failed due to SLA '{}' violated: {}", violation.slaId(), violation.reason()); yield markAs(executor.getExecution(), State.Type.FAILED); } case CANCEL -> markAs(executor.getExecution(), State.Type.CANCELLED);