From 24e5b7f7230d10b1136d2d9594e3a3d865bee29e Mon Sep 17 00:00:00 2001 From: stack Date: Tue, 2 Apr 2019 21:36:04 -0700 Subject: [PATCH] HBASE-22155 Move 2.2.0 on to hbase-thirdparty-2.2.0 --- .../main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java | 4 +++- pom.xml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java index 7596f509ba..703bd8bbae 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java @@ -2196,7 +2196,9 @@ public class HBaseAdmin implements Admin { // TODO: how long should we wait? Spin forever? return future.get(timeout, units); } catch (InterruptedException e) { - throw new InterruptedIOException("Interrupt while waiting on " + future); + IOException ioe = new InterruptedIOException("Interrupt while waiting on " + future); + ioe.initCause(e); + throw ioe; } catch (TimeoutException e) { throw new TimeoutIOException(e); } catch (ExecutionException e) { diff --git a/pom.xml b/pom.xml index 97b7b5070f..8472b507b7 100755 --- a/pom.xml +++ b/pom.xml @@ -1443,7 +1443,7 @@ 3.1.11 2.12 1.0.1 - 2.1.0 + 2.2.0 -- 2.19.1