This is an automated email from the ASF dual-hosted git repository.

asalamon74 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/oozie.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d1010b  OOZIE-3590 Fix missing log expression parameter in 
SLACalculatorMemory (zuston via asalamon74)
8d1010b is described below

commit 8d1010b2427833c5c61c99bf1f6ba6ac10cae6cf
Author: Andras Salamon <[email protected]>
AuthorDate: Tue Feb 25 17:13:39 2020 +0100

    OOZIE-3590 Fix missing log expression parameter in SLACalculatorMemory 
(zuston via asalamon74)
---
 core/src/main/java/org/apache/oozie/sla/SLACalculatorMemory.java | 2 +-
 release-log.txt                                                  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/oozie/sla/SLACalculatorMemory.java 
b/core/src/main/java/org/apache/oozie/sla/SLACalculatorMemory.java
index c7ccfcc..bbec885 100644
--- a/core/src/main/java/org/apache/oozie/sla/SLACalculatorMemory.java
+++ b/core/src/main/java/org/apache/oozie/sla/SLACalculatorMemory.java
@@ -124,7 +124,7 @@ public class SLACalculatorMemory implements SLACalculator {
                 try {
                     boolean isDone = 
SLAXCommandFactory.getSLAJobHistoryXCommand(jobId).call();
                     if (isDone) {
-                        LOG.debug("[{0}] job is finished and processed. 
Removing from history");
+                        LOG.debug("[{0}] job is finished and processed. 
Removing from history", jobId);
                         jobItr.remove();
                     }
                 }
diff --git a/release-log.txt b/release-log.txt
index ebe0f73..6f1248e 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.3.0 release (trunk - unreleased)
 
+OOZIE-3590 Fix missing log expression parameter in SLACalculatorMemory (zuston 
via asalamon74)
 OOZIE-3551 Spark shouldn't obtain tokens withing the Spark action (Liz 
Szilagyi via gezapeti)
 OOZIE-3574 JavaAction create incorrect fileSystem instance in addActionLibs 
method (zuston via asalamon74)
 OOZIE-3569 SSH Action should add checking success file (zuston via asalamon74)

Reply via email to