You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by an...@apache.org on 2018/11/05 08:57:19 UTC

oozie git commit: OOZIE-3373 [core] Logging of lock information is inconsistent (Prabhu Joseph via andras.piros)

Repository: oozie
Updated Branches:
  refs/heads/master 65936460e -> 38ab52f59


OOZIE-3373 [core] Logging of lock information is inconsistent (Prabhu Joseph via andras.piros)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/38ab52f5
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/38ab52f5
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/38ab52f5

Branch: refs/heads/master
Commit: 38ab52f59039675927312a130d297d351454baac
Parents: 6593646
Author: Andras Piros <an...@cloudera.com>
Authored: Mon Nov 5 09:56:49 2018 +0100
Committer: Andras Piros <an...@cloudera.com>
Committed: Mon Nov 5 09:56:49 2018 +0100

----------------------------------------------------------------------
 core/src/main/java/org/apache/oozie/command/XCommand.java | 2 +-
 release-log.txt                                           | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/38ab52f5/core/src/main/java/org/apache/oozie/command/XCommand.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/oozie/command/XCommand.java b/core/src/main/java/org/apache/oozie/command/XCommand.java
index 4876e58..a80444e 100644
--- a/core/src/main/java/org/apache/oozie/command/XCommand.java
+++ b/core/src/main/java/org/apache/oozie/command/XCommand.java
@@ -214,7 +214,7 @@ public abstract class XCommand<T> implements XCallable<T> {
             if (isReQueueRequired()) {
                 // if not acquire the lock, re-queue itself with default delay
                 queue(this, getRequeueDelay());
-                LOG.debug("Could not get lock [{0}], timed out [{1}]ms, and requeue itself [{2}]", this.toString(),
+                LOG.debug("Could not get lock for [{0}], timed out [{1}]ms, and requeue itself [{2}]", getEntityKey(),
                         getLockTimeOut(), getName());
             }
             else {

http://git-wip-us.apache.org/repos/asf/oozie/blob/38ab52f5/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index 684158c..374719b 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.2.0 release (trunk - unreleased)
 
+OOZIE-3373 [core] Logging of lock information is inconsistent (Prabhu Joseph via andras.piros)
 OOZIE-3371 TestSubWorkflowActionExecutor#testSubWorkflowRerun() is flaky (andras.piros)
 OOZIE-3365 Workflow and coordinator action status remains RUNNING after rerun (satishsaley)
 OOZIE-3361 [docs] Document embedded XML job submission mode (asalamon74 via andras.piros)