BUG-8494: fix throttling during reconnect
[controller.git] / opendaylight / md-sal / cds-access-client / src / main / java / org / opendaylight / controller / cluster / access / client / SimpleReconnectForwarder.java
index 2def9a10152663b50c4e829436900b89955f42d9..90ec49e5d0b64f9a674a9bfc99c6ac42add21cc3 100644 (file)
@@ -15,7 +15,12 @@ final class SimpleReconnectForwarder extends ReconnectForwarder {
 
     @Override
     protected void forwardEntry(final ConnectionEntry entry, final long now) {
-        // We are ignoring requested delay, as we have already paid the admission delay
+        successor().sendEntry(entry, now);
+    }
+
+    @Override
+    protected void replayEntry(final ConnectionEntry entry, final long now) {
+        // We are executing in the context of the client thread, do not block
         successor().enqueueEntry(entry, now);
     }
 }