HBASE-22155 Move 2.2.0 on to hbase-thirdparty-2.2.0
This commit is contained in:
parent
8a6b8e81aa
commit
c7e92bbc0d
@ -2115,7 +2115,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) {
|
||||
|
2
pom.xml
2
pom.xml
@ -1445,7 +1445,7 @@
|
||||
<spotbugs.version>3.1.11</spotbugs.version>
|
||||
<wagon.ssh.version>2.12</wagon.ssh.version>
|
||||
<xml.maven.version>1.0.1</xml.maven.version>
|
||||
<hbase-thirdparty.version>2.1.0</hbase-thirdparty.version>
|
||||
<hbase-thirdparty.version>2.2.0</hbase-thirdparty.version>
|
||||
<!-- Intraproject jar naming properties -->
|
||||
<!-- TODO this is pretty ugly, but works for the moment.
|
||||
Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
|
||||
|
Loading…
x
Reference in New Issue
Block a user