From 388581bcf36c45be8cd4afd1bd16f3b1a55171d3 Mon Sep 17 00:00:00 2001 From: Giovanni Meo Date: Mon, 26 Aug 2013 19:53:20 +0200 Subject: [PATCH] HostTracker immediately ages out hosts on coordinator - Let say an Host 1.1.4.1 is learnt by CTRL2 and CTRL1 is doing cleanup of the host tracker database, the CTRL1 was cleaning immediately the hosts learnt on other controllers because the host count was not serialized appropriately Change-Id: I1a0542c5e44cf3fc3f33d6fe95d129e83825cc8c Signed-off-by: Giovanni Meo --- .../controller/hosttracker/hostAware/HostNodeConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java index 893648cde8..206124b93b 100644 --- a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java +++ b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/HostNodeConnector.java @@ -35,7 +35,7 @@ public class HostNodeConnector extends Host implements Serializable { private short vlan; @XmlElement private boolean staticHost; - private transient short arpSendCountDown; + private short arpSendCountDown; /** * Private constructor used for JAXB mapping -- 2.36.6