HBASE-2806 (small compile fix via jgray)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@960664 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2993d97c97
commit
c2c41f0439
|
@ -428,6 +428,7 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-2501 Refactor StoreFile Code
|
HBASE-2501 Refactor StoreFile Code
|
||||||
HBASE-2806 DNS hiccups cause uncaught NPE in HServerAddress#getBindAddress
|
HBASE-2806 DNS hiccups cause uncaught NPE in HServerAddress#getBindAddress
|
||||||
(Benoit Sigoure via Stack)
|
(Benoit Sigoure via Stack)
|
||||||
|
HBASE-2806 (small compile fix via jgray)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
|
|
@ -100,7 +100,7 @@ public class HServerAddress implements WritableComparable<HServerAddress> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private checkBindAddressCanBeResolved() {
|
private void checkBindAddressCanBeResolved() {
|
||||||
if (getBindAddress() == null) {
|
if (getBindAddress() == null) {
|
||||||
throw new IllegalArgumentException("Could not resolve the"
|
throw new IllegalArgumentException("Could not resolve the"
|
||||||
+ " DNS name of " + stringValue);
|
+ " DNS name of " + stringValue);
|
||||||
|
|
Loading…
Reference in New Issue