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 ...@@ -236,7 +236,7 @@ public class DefaultDatabase extends AbstractResource<Database> implements Datab
236 236
237 @Override 237 @Override
238 public boolean hasChangeNotificationSupport() { 238 public boolean hasChangeNotificationSupport() {
239 - return true; 239 + return false;
240 } 240 }
241 241
242 private class InternalStateMachineWatcher implements TriConsumer<String, Object, Object> { 242 private class InternalStateMachineWatcher implements TriConsumer<String, Object, Object> {
......
...@@ -367,7 +367,7 @@ public class PartitionedDatabase implements Database { ...@@ -367,7 +367,7 @@ public class PartitionedDatabase implements Database {
367 367
368 @Override 368 @Override
369 public boolean hasChangeNotificationSupport() { 369 public boolean hasChangeNotificationSupport() {
370 - return true; 370 + return false;
371 } 371 }
372 372
373 @Override 373 @Override
......