BUG-8403: raise misordered request log message 41/57941/2
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 20:33:57 +0000 (20:33 +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>
(cherry picked from commit 956797bba2da2db6de3f1e8877d6825aa4c1f159)

opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/AbstractFrontendHistory.java

index 851e500b451a9821ecff55ce0c86d42a0377475c..609751b4bdcdd5efd67b5031d138f914de1815a0 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);
             }