commit 1fca2606b0d8a46d668c88a876c082820597735a Author: Bharath Krishna Date: Wed Jun 13 22:06:01 2018 -0700 HIVE-19786 : Fixing RpcServer cancelTask incorrect log message. diff --git spark-client/src/main/java/org/apache/hive/spark/client/rpc/RpcServer.java spark-client/src/main/java/org/apache/hive/spark/client/rpc/RpcServer.java index f1383d6f18b5a06e13eaae732d018affb07cb007..2c1b2602e50df1859cf365c7498cc2f96e166ab2 100644 --- spark-client/src/main/java/org/apache/hive/spark/client/rpc/RpcServer.java +++ spark-client/src/main/java/org/apache/hive/spark/client/rpc/RpcServer.java @@ -101,7 +101,8 @@ public void initChannel(SocketChannel ch) throws Exception { Runnable cancelTask = new Runnable() { @Override public void run() { - LOG.warn("Timed out waiting for test message from Remote Spark driver."); + LOG.warn("Timed out waiting for the completion of SASL negotiation " + + "between the client and the Remote Spark Driver RPC Server."); newRpc.close(); } };