From be6af4093624353da25fe240ce9c77d5789a0e36 Mon Sep 17 00:00:00 2001 From: Tony Tkacik Date: Wed, 22 Jan 2014 11:22:53 +0100 Subject: [PATCH] Default DataBroker does not read subtrees from Mountpoint 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 --- .../controller/sal/dom/broker/MountPointManagerImpl.xtend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/MountPointManagerImpl.xtend b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/MountPointManagerImpl.xtend index 5d441bddbd..c3bc88ed5e 100644 --- a/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/MountPointManagerImpl.xtend +++ b/opendaylight/md-sal/sal-dom-broker/src/main/java/org/opendaylight/controller/sal/dom/broker/MountPointManagerImpl.xtend @@ -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); } -- 2.36.6