You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by st...@apache.org on 2018/02/23 18:05:07 UTC

hive git commit: HIVE-18765: SparkClientImpl swallows exception messages from the RemoteDriver (Sahil Takiar, reviewed by Xuefu Zhang)

Repository: hive
Updated Branches:
  refs/heads/master cbb9233a3 -> e3c4d51a1


HIVE-18765: SparkClientImpl swallows exception messages from the RemoteDriver (Sahil Takiar, reviewed by Xuefu Zhang)


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

Branch: refs/heads/master
Commit: e3c4d51a1d49b3398f8c82237c93f8107d71ad2e
Parents: cbb9233
Author: Sahil Takiar <ta...@gmail.com>
Authored: Fri Feb 23 09:59:31 2018 -0800
Committer: Sahil Takiar <st...@cloudera.com>
Committed: Fri Feb 23 09:59:31 2018 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/hive/spark/client/SparkClientImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/e3c4d51a/spark-client/src/main/java/org/apache/hive/spark/client/SparkClientImpl.java
----------------------------------------------------------------------
diff --git a/spark-client/src/main/java/org/apache/hive/spark/client/SparkClientImpl.java b/spark-client/src/main/java/org/apache/hive/spark/client/SparkClientImpl.java
index 214f74b..665ed92 100644
--- a/spark-client/src/main/java/org/apache/hive/spark/client/SparkClientImpl.java
+++ b/spark-client/src/main/java/org/apache/hive/spark/client/SparkClientImpl.java
@@ -575,7 +575,7 @@ class SparkClientImpl implements SparkClient {
     }
 
     private void handle(ChannelHandlerContext ctx, Error msg) {
-      LOG.warn("Error reported from remote driver.", msg.cause);
+      LOG.warn("Error reported from remote driver: {}", msg.cause);
     }
 
     private void handle(ChannelHandlerContext ctx, JobMetrics msg) {