HBASE-22155 Move 2.2.0 on to hbase-thirdparty-2.2.0

This commit is contained in:
stack 2019-04-02 21:36:04 -07:00
parent 8a6b8e81aa
commit c7e92bbc0d
2 changed files with 4 additions and 2 deletions

View File

@ -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) {

View File

@ -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. -->