From 4c4d9a718ca4060ac77ad200dd542c5c1292ea58 Mon Sep 17 00:00:00 2001 From: Feng Lee Date: Mon, 8 Aug 2016 17:41:48 +0800 Subject: [PATCH] emqttd_router:dump/0 --- src/emqttd.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emqttd.erl b/src/emqttd.erl index 763928b30..6914d7993 100644 --- a/src/emqttd.erl +++ b/src/emqttd.erl @@ -136,7 +136,7 @@ subscriptions(Subscriber) -> with_pubsub(Fun) -> {ok, PubSub} = conf(pubsub_adapter), Fun(PubSub). -dump() -> with_pubsub(fun(PubSub) -> lists:append(PubSub:dump(), zenmq_router:dump()) end). +dump() -> with_pubsub(fun(PubSub) -> lists:append(PubSub:dump(), emqttd_router:dump()) end). %%-------------------------------------------------------------------- %% Hooks API