minor: fix wrong Logger in InMemoryDOMDataStoreFactory 34/79934/1
authorMichael Vorburger <vorburger@redhat.com>
Sat, 26 Jan 2019 06:01:55 +0000 (07:01 +0100)
committerMichael Vorburger <vorburger@redhat.com>
Sat, 26 Jan 2019 06:01:55 +0000 (07:01 +0100)
Change-Id: I20257192bc2885a2500025bcbdf18e8fa0c8d0c6
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/InMemoryDOMDataStoreFactory.java

index c040b2ce82b9f979bed71f190af0042f0e095828..0db38fe3aa3df5c1188640391edf05c15507544c 100644 (file)
@@ -64,6 +64,6 @@ public final class InMemoryDOMDataStoreFactory {
         // subsequent submitted notifications will block the calling thread.
         return SpecialExecutors.newBlockingBoundedFastThreadPool(
             props.getMaxDataChangeExecutorPoolSize(), props.getMaxDataChangeExecutorQueueSize(),
-            name + "-DCL", InMemoryDOMDataStore.class);
+            name + "-DCL", InMemoryDOMDataStoreFactory.class);
     }
 }