BUG-8403: raise misordered request log message 99/57599/3
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 22 May 2017 08:17:15 +0000 (10:17 +0200)
committerRobert Varga <nite@hq.sk>
Sun, 28 May 2017 14:52:22 +0000 (14:52 +0000)
This error seems to occur intermittently, raise the message to
a warning.

Change-Id: Ia749a9ac17fa75ef26fe7a2963fa9ea3a0b35731
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/AbstractFrontendHistory.java

index ea43e22ebbf0c828ded54bdbc3e9daafa7b082ef..8a0cfd8a908ad53b965b3436f2a304d7870fd789 100644 (file)
@@ -136,7 +136,7 @@ abstract class AbstractFrontendHistory implements Identifiable<LocalHistoryIdent
         if (tx == null) {
             // The transaction does not exist and we are about to create it, check sequence number
             if (request.getSequence() != 0) {
-                LOG.debug("{}: no transaction state present, unexpected request {}", persistenceId(), request);
+                LOG.warn("{}: no transaction state present, unexpected request {}", persistenceId(), request);
                 throw new OutOfOrderRequestException(0);
             }