HBASE-22155 Move 2.2.0 on to hbase-thirdparty-2.2.0
This commit is contained in:
parent
bd2f04dd54
commit
387a5da462
|
@ -1829,7 +1829,9 @@ public class HBaseAdmin implements Admin {
|
||||||
// TODO: how long should we wait? Spin forever?
|
// TODO: how long should we wait? Spin forever?
|
||||||
return future.get(timeout, units);
|
return future.get(timeout, units);
|
||||||
} catch (InterruptedException e) {
|
} 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) {
|
} catch (TimeoutException e) {
|
||||||
throw new TimeoutIOException(e);
|
throw new TimeoutIOException(e);
|
||||||
} catch (ExecutionException e) {
|
} catch (ExecutionException e) {
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -1576,7 +1576,7 @@
|
||||||
<spotbugs.version>3.1.11</spotbugs.version>
|
<spotbugs.version>3.1.11</spotbugs.version>
|
||||||
<wagon.ssh.version>2.12</wagon.ssh.version>
|
<wagon.ssh.version>2.12</wagon.ssh.version>
|
||||||
<xml.maven.version>1.0.1</xml.maven.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 -->
|
<!-- Intraproject jar naming properties -->
|
||||||
<!-- TODO this is pretty ugly, but works for the moment.
|
<!-- TODO this is pretty ugly, but works for the moment.
|
||||||
Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
|
Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
|
||||||
|
|
Loading…
Reference in New Issue