Add logging in tx facade along with the RemoteDeviceId
[netconf.git] / netconf / netconf-topology / src / main / java / org / opendaylight / netconf / topology / pipeline / ClusteredNetconfDeviceCommunicator.java
index 0b191974d761e352de8b35e20a01c5e2251df3de..061024c1caa9478fc2fc7c50303e3409ab97a86b 100644 (file)
@@ -26,8 +26,8 @@ public class ClusteredNetconfDeviceCommunicator extends NetconfDeviceCommunicato
     private final ArrayList<NetconfClientSessionListener> netconfClientSessionListeners = new ArrayList<>();
     private EntityOwnershipListenerRegistration ownershipListenerRegistration = null;
 
-    public ClusteredNetconfDeviceCommunicator(RemoteDeviceId id, NetconfDevice remoteDevice, EntityOwnershipService ownershipService) {
-        super(id, remoteDevice);
+    public ClusteredNetconfDeviceCommunicator(RemoteDeviceId id, NetconfDevice remoteDevice, EntityOwnershipService ownershipService, final int rpcMessageLimit) {
+        super(id, remoteDevice, rpcMessageLimit);
         this.ownershipService = ownershipService;
     }