Default DataBroker does not read subtrees from Mountpoint 61/4561/1
authorTony Tkacik <ttkacik@cisco.com>
Wed, 22 Jan 2014 10:22:53 +0000 (11:22 +0100)
committerTony Tkacik <ttkacik@cisco.com>
Wed, 22 Jan 2014 10:22:53 +0000 (11:22 +0100)
Changed default behaviour of DataBroker, which involved
also read from remote Netconf nodes to return only
data from local store. To access Netconf device
as a datastore one must get MountInstance for it -
MD-SAL instance exclusive for that device.

Change-Id: I5e900b3964475e95a5436746c1d47c3b68b712db
Signed-off-by: Tony Tkacik <ttkacik@cisco.com>
opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/MountPointManagerImpl.xtend

index 5d441bddbd0f23e263c452695da13afe9ecacc3e..c3bc88ed5e4acc55a85cc3829e743ed107150174 100644 (file)
@@ -35,8 +35,8 @@ class MountPointManagerImpl implements MountProvisionService {
     }
     
     def registerMountPoint(MountPointImpl impl) {
-        dataBroker?.registerConfigurationReader(impl.mountPath,impl.readWrapper);
-        dataBroker?.registerOperationalReader(impl.mountPath,impl.readWrapper);
+        //dataBroker?.registerConfigurationReader(impl.mountPath,impl.readWrapper);
+        //dataBroker?.registerOperationalReader(impl.mountPath,impl.readWrapper);
         
     }