From eabeecf8b2e8002e5f5f7ca18c66f60ea3d7b235 Mon Sep 17 00:00:00 2001 From: Haomai Wang Date: Sat, 7 May 2016 00:12:24 +0800 Subject: [PATCH] AsyncConnection: release dispatch throttle with fast dispatch message Signed-off-by: Haomai Wang --- src/msg/async/AsyncConnection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/async/AsyncConnection.cc b/src/msg/async/AsyncConnection.cc index b0e4455ec331..d52f4b160c34 100644 --- a/src/msg/async/AsyncConnection.cc +++ b/src/msg/async/AsyncConnection.cc @@ -895,7 +895,7 @@ void AsyncConnection::process() delay_state->queue(delay_period, release, message); } else if (async_msgr->ms_can_fast_dispatch(message)) { lock.Unlock(); - async_msgr->ms_fast_dispatch(message); + dispatch_queue->fast_dispatch(message); lock.Lock(); } else { dispatch_queue->enqueue(message, message->get_priority(), conn_id); -- 2.47.3