Madan Jampani

Disable the new change notification support as it seems to have caused a regression

Change-Id: I30486ac18b014a0a8a8f393201bb91cf85550669
......@@ -236,7 +236,7 @@ public class DefaultDatabase extends AbstractResource<Database> implements Datab
@Override
public boolean hasChangeNotificationSupport() {
return true;
return false;
}
private class InternalStateMachineWatcher implements TriConsumer<String, Object, Object> {
......
......@@ -367,7 +367,7 @@ public class PartitionedDatabase implements Database {
@Override
public boolean hasChangeNotificationSupport() {
return true;
return false;
}
@Override
......