Merge branch 'develop' of https://github.com/emqtt/emqttd into develop

This commit is contained in:
turtled 2017-04-11 09:40:46 +08:00
commit 5476288ab3
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
handle_request(Req) ->
handle_request(Req:get(method), Req:get(path), Req).
handle_request('GET', "/status", Req) ->
handle_request(Method, "/status", Req) when Method =:= 'HEAD'; Method =:= 'GET' ->
{InternalStatus, _ProvidedStatus} = init:get_status(),
AppStatus =
case lists:keysearch(emqttd, 1, application:which_applications()) of