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

shv pushed a commit to branch branch-2.10
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-2.10 by this push:
     new 16fd00d  HADOOP-16208. Do Not Log InterruptedException in Client.
16fd00d is described below

commit 16fd00d62de5ee42fc2abeafdcb186bbfbdff7af
Author: David Mollitor <david.molli...@cloudera.com>
AuthorDate: Thu Apr 4 21:13:09 2019 +0100

    HADOOP-16208. Do Not Log InterruptedException in Client.
    
    Contributed by David Mollitor.
    
    (cherry picked from commit c90736350ba158c7872a39426e7a29c5e5e0bb48)
---
 .../hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
index bcabf00..ed9def1 100644
--- 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
+++ 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
@@ -1456,10 +1456,12 @@ public class Client implements AutoCloseable {
         connection.sendRpcRequest(call);                 // send the rpc 
request
       } catch (RejectedExecutionException e) {
         throw new IOException("connection has been closed", e);
-      } catch (InterruptedException e) {
+      } catch (InterruptedException ie) {
         Thread.currentThread().interrupt();
-        LOG.warn("interrupted waiting to send rpc request to server", e);
-        throw new IOException(e);
+        IOException ioe = new InterruptedIOException(
+            "Interrupted waiting to send RPC request to server");
+        ioe.initCause(ie);
+        throw ioe;
       }
     } catch(Exception e) {
       if (isAsynchronousMode()) {


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to