From: Martin Bobak Date: Tue, 12 May 2015 11:26:08 +0000 (+0200) Subject: un - throttle connection interval set to 10ms X-Git-Tag: release/lithium~194^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=942007504b442d513649d035b5f5237c02e3a9ac;p=openflowplugin.git un - throttle connection interval set to 10ms Change-Id: I887ddf453c06203f107db12fbb082a9b7c3ca793 Signed-off-by: Martin Bobak (cherry picked from commit 199e8cd252cf5dfde1e4c161d50eeb6876b692f3) --- diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/connection/ThrottledConnectionsHolderImpl.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/connection/ThrottledConnectionsHolderImpl.java index c131e43663..8c21b83d9a 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/connection/ThrottledConnectionsHolderImpl.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/connection/ThrottledConnectionsHolderImpl.java @@ -29,7 +29,7 @@ public class ThrottledConnectionsHolderImpl implements ThrottledConnectionsHolde private final Set throttledConnections = Collections.synchronizedSet(new LinkedHashSet()); private final HashedWheelTimer hashedWheelTimer; private Timeout timeout; - private long delay = 30L; + private long delay = 10L; private static final Logger LOG = LoggerFactory.getLogger(ThrottledConnectionsHolderImpl.class); public ThrottledConnectionsHolderImpl(final HashedWheelTimer hashedWheelTimer) {