From ae2508191650c14b62ff0fe1cbcd0f10214f59e4 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 95e7347ef3..35b819c992 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 @@ -2113,7 +2113,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 447b93f00d..94962b44bf 100755 --- a/pom.xml +++ b/pom.xml @@ -1445,7 +1445,7 @@ 3.1.11 2.12 1.0.1 - 2.1.0 + 2.2.0 -- 2.19.1