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 2019/01/17 03:19:22 UTC

[oozie] branch master updated: OOZIE-3422 [client] Enhance logging of Oozie client connecting to the Oozie server (asalamon74 via andras.piros)

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

andras 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 fbd2b5d  OOZIE-3422 [client] Enhance logging of Oozie client connecting to the Oozie server (asalamon74 via andras.piros)
fbd2b5d is described below

commit fbd2b5dba9ce04c8fa89881e1b5783fef5cc2e2c
Author: Andras Piros <an...@cloudera.com>
AuthorDate: Wed Jan 16 19:18:55 2019 -0800

    OOZIE-3422 [client] Enhance logging of Oozie client connecting to the Oozie server (asalamon74 via andras.piros)
---
 .../java/org/apache/oozie/client/retry/ConnectionRetriableClient.java    | 1 +
 release-log.txt                                                          | 1 +
 2 files changed, 2 insertions(+)

diff --git a/client/src/main/java/org/apache/oozie/client/retry/ConnectionRetriableClient.java b/client/src/main/java/org/apache/oozie/client/retry/ConnectionRetriableClient.java
index 3371036..9a05053 100644
--- a/client/src/main/java/org/apache/oozie/client/retry/ConnectionRetriableClient.java
+++ b/client/src/main/java/org/apache/oozie/client/retry/ConnectionRetriableClient.java
@@ -63,6 +63,7 @@ public abstract class ConnectionRetriableClient {
                 // No retry for other exceptions
             }
         }
+        cliException.printStackTrace();
         throw new IOException("Error while connecting Oozie server. No of retries = " + numTries + ". Exception = "
                 + cliException.getMessage(), cliException);
     }
diff --git a/release-log.txt b/release-log.txt
index a0734a6..8f85420 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.2.0 release (trunk - unreleased)
 
+OOZIE-3422 [client] Enhance logging of Oozie client connecting to the Oozie server (asalamon74 via andras.piros)
 OOZIE-3421 [tests] GitServer lifecycle fixes (andras.piros via kmarton)
 OOZIE-3415 [core] libpath cannot be used together with coord.application.path and bundle.application.path (asalamon74 via andras.piros)
 OOZIE-3407 [tests] Cleanup TestPurgeXCommand (asalamon74 via andras.piros)