IgorKoshnarov

Results 7 comments of IgorKoshnarov

Thanks, yes, {current_function, {gen, do_call, 4}} is always the same. I'll try to dbg and report here if something pops up.

I couldn't dbg somehow, I tried to erl -remsh to my app and open trace port, but got error: ``` dbg:tracer(port, dbg:trace_port(ip, 50000)). ** exception error: undefined function dbg:trace_port/2 ```...

It failed on the first command: ``` dbg:tracer(). ** exception error: undefined function dbg:tracer/0 ``` It seems that module dbg is not present on the server. ``` code:is_loaded(dbg). false ```...

Ok, thanks, currently I see this version: `cat /usr/lib/erlang/releases/RELEASES %% coding: utf-8 [{release,"Erlang/OTP","23","11.2.2.18", [{kernel,"7.3.1.7","/usr/lib/erlang/lib/kernel-7.3.1.7"}, {stdlib,"3.14.2.3","/usr/lib/erlang/lib/stdlib-3.14.2.3"}, {sasl,"4.0.2","/usr/lib/erlang/lib/sasl-4.0.2"}], permanent}].`

I'll put here the reply which I got from Fred Herbert on erlangforums, based on my backtrace: https://erlangforums.com/t/gun-gen-statem-process-queue-messages-stoped-being-handled/3413/5 Your FSM is currently stuck in a call to another FSM. In...

>I think its pid is if your node is still up. I had to restart the application because of complaints, so I can't investigate that process. And currently there is...