chore(emqx_cm): remove unused tracepoints
This commit is contained in:
parent
c9b86a8375
commit
ae5792fa64
|
@ -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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue