fix(shared_sub): discard all unexpected msgs

This commit is contained in:
Shawn 2021-06-28 09:35:39 +08:00
parent 513cd001ac
commit 5fbf83e7f0
1 changed files with 1 additions and 2 deletions

View File

@ -352,8 +352,7 @@ handle_info({'DOWN', _MRef, process, SubPid, _Reason}, State = #state{pmon = PMo
cleanup_down(SubPid),
{noreply, update_stats(State#state{pmon = emqx_pmon:erase(SubPid, PMon)})};
handle_info(Info, State) ->
?LOG(error, "Unexpected info: ~p", [Info]),
handle_info(_Info, State) ->
{noreply, State}.
terminate(_Reason, _State) ->