Skip to content

Commit

Permalink
HBASE-14261 Enhance Chaos Monkey framework by adding zookeeper and da…
Browse files Browse the repository at this point in the history
…tanode fault injections; ADDENDUM
  • Loading branch information
Srikanth Srungarapu committed Sep 4, 2015
1 parent 6a8ba22 commit 2969093
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public static ServerName[] readZKNodes(Configuration conf) {
*/
public static void main(String args[]) {
for(ServerName server: readZKNodes(HBaseConfiguration.create())) {
System.out.println("Zk host: " + server.getHostname());
// bin/zookeeper.sh relies on the "ZK host" string for grepping which is case sensitive.
System.out.println("ZK host: " + server.getHostname());
}
}
}

0 comments on commit 2969093

Please sign in to comment.