aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/vnet/session/session_node.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/vnet/session/session_node.c b/src/vnet/session/session_node.c
index a8478884806..bfe7702388c 100644
--- a/src/vnet/session/session_node.c
+++ b/src/vnet/session/session_node.c
@@ -955,20 +955,6 @@ session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
s = session_get_from_handle_if_valid (e->session_handle);
if (PREDICT_FALSE (!s))
break;
-
- /* Make sure session disconnects run after the pending list is
- * drained, i.e., postpone if the first time. If not the first
- * and the tx queue is still not empty, try to wait for some
- * dispatch cycles */
- if (!e->postponed
- || (e->postponed < 200
- && svm_fifo_max_dequeue_cons (s->tx_fifo)))
- {
- e->postponed += 1;
- session_evt_add_pending (wrk, elt);
- continue;
- }
-
session_transport_close (s);
break;
case SESSION_IO_EVT_BUILTIN_RX: