Fix a couple of issues with replication
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / TransactionProxy.java
index cbd61b2087ac3c2bfd38f77ea3a34ed51d6786d8..b434c9e463b90ef951599baccc13e4de38343ba5 100644 (file)
@@ -201,7 +201,7 @@ public class TransactionProxy implements DOMStoreReadWriteTransaction {
                 remoteTransactionPaths.put(shardName, transactionContext);
             }
         } catch(TimeoutException e){
-            LOG.warn("Timed out trying to create transaction on shard {}: {}", shardName, e);
+            LOG.error("Creating NoOpTransaction because of : {}", e.getMessage());
             remoteTransactionPaths.put(shardName, new NoOpTransactionContext(shardName));
         }
     }