- If a port is already under OF control and then hw LLDP transmit is enabled on it...
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / core / internal / SecureMessageReadWriteService.java
index 627e22337b4f01cab85a7b8fbfce8f44952c6a9e..b41156147f7d3ea04066903e4794820437ab9099 100644 (file)
@@ -69,8 +69,8 @@ public class SecureMessageReadWriteService implements IMessageReadWrite {
     private void createSecureChannel(SocketChannel socket) throws Exception {
        String keyStoreFile = System.getProperty("controllerKeyStore");
        String keyStorePassword = System.getProperty("controllerKeyStorePassword");
-       String trustStoreFile = System.getProperty("controllerTrustStore");;
-       String trustStorePassword = System.getProperty("controllerTrustStorePassword");;
+       String trustStoreFile = System.getProperty("controllerTrustStore");
+       String trustStorePassword = System.getProperty("controllerTrustStorePassword");
 
         KeyStore ks = KeyStore.getInstance("JKS");
         KeyStore ts = KeyStore.getInstance("JKS");
@@ -204,6 +204,7 @@ public class SecureMessageReadWriteService implements IMessageReadWrite {
 
        bytesRead = socket.read(peerNetData);
        if (bytesRead < 0) {
+               logger.debug("Message read operation failed");
                        throw new AsynchronousCloseException();
        }