HBASE-4369 Deprecate HConnection#getZookeeperWatcher in prep for HBASE-1762
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1172025 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9da4ab25b7
commit
b86f8dff19
|
@ -19,6 +19,7 @@ Release 0.91.0 - Unreleased
|
||||||
HBASE-4233 Update protobuf dependency to 2.4.0a (todd)
|
HBASE-4233 Update protobuf dependency to 2.4.0a (todd)
|
||||||
HBASE-4299 Update to Avro 1.5.3 and use Avro Maven plugin to generate
|
HBASE-4299 Update to Avro 1.5.3 and use Avro Maven plugin to generate
|
||||||
Avro classes. (Alejandro Abdelnur)
|
Avro classes. (Alejandro Abdelnur)
|
||||||
|
HBASE-4369 Deprecate HConnection#getZookeeperWatcher in prep for HBASE-1762
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
HBASE-3280 YouAreDeadException being swallowed in HRS getMaster
|
HBASE-3280 YouAreDeadException being swallowed in HRS getMaster
|
||||||
|
|
|
@ -68,6 +68,8 @@ public interface HConnection extends Abortable, Closeable {
|
||||||
* Retrieve ZooKeeperWatcher used by this connection.
|
* Retrieve ZooKeeperWatcher used by this connection.
|
||||||
* @return ZooKeeperWatcher handle being used by the connection.
|
* @return ZooKeeperWatcher handle being used by the connection.
|
||||||
* @throws IOException if a remote or network exception occurs
|
* @throws IOException if a remote or network exception occurs
|
||||||
|
* @deprecated Removed because it was a mistake exposing zookeeper in this
|
||||||
|
* interface (ZooKeeper is an implementation detail).
|
||||||
*/
|
*/
|
||||||
public ZooKeeperWatcher getZooKeeperWatcher() throws IOException;
|
public ZooKeeperWatcher getZooKeeperWatcher() throws IOException;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue