chore(emqx_cm): remove unused tracepoints

This commit is contained in:
Tobias Lindahl 2021-11-16 14:37:15 +01:00
parent c9b86a8375
commit ae5792fa64
1 changed files with 0 additions and 3 deletions

View File

@ -338,13 +338,10 @@ takeover_session(ClientId, Pid) ->
try do_takeover_session(ClientId, Pid) try do_takeover_session(ClientId, Pid)
catch catch
_ : noproc -> % emqx_ws_connection: call _ : noproc -> % emqx_ws_connection: call
?tp(debug, "session_gone", #{pid => Pid}),
emqx_persistent_session:lookup(ClientId); emqx_persistent_session:lookup(ClientId);
_ : {noproc, _} -> % emqx_connection: gen_server:call _ : {noproc, _} -> % emqx_connection: gen_server:call
?tp(debug, "session_gone", #{pid => Pid}),
emqx_persistent_session:lookup(ClientId); emqx_persistent_session:lookup(ClientId);
_ : {'EXIT', {noproc, _}} -> % rpc_call/3 _ : {'EXIT', {noproc, _}} -> % rpc_call/3
?tp(debug, "session_gone", #{pid => Pid}),
emqx_persistent_session:lookup(ClientId) emqx_persistent_session:lookup(ClientId)
end. end.