Merge branch 'rabbitmq-stomp-63' into stable

This commit is contained in:
Michael Klishin 2016-03-01 16:06:38 +03:00
commit 09a3db0391
1 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,8 @@ init([SupHelperPid, Ref, Sock, Configuration]) ->
handle_call(Msg, From, State) ->
{stop, {stomp_unexpected_call, Msg, From}, State}.
handle_cast(client_timeout, State) ->
{stop, {shutdown, client_heartbeat_timeout}, State};
handle_cast(Msg, State) ->
{stop, {stomp_unexpected_cast, Msg}, State}.