for (String table : newTables) {
final String clusterTableKey = getClusterTableKey(cluster, table);
WatchNodeExistance readOnlyWatcher = new WatchNodeExistance(_zk, ZookeeperPathConstants.getTableReadOnlyPath(
cluster, table));
readOnlyWatcher.watch(new WatchNodeExistance.OnChange() {
@Override
public void action(Stat stat) {
if (stat == null) {
_readOnly.put(clusterTableKey, Boolean.FALSE);
} else {