Worker keep going down

I am new to temporal. We are using temporal for chat workflow application where we constantly send signals and workflow picks up these messages and replies according to it
We are facing this issue now worker kept on restarting we can only see this error

Error: async hook stack has become corrupted (actual: 101, expected: 3)
 1: 0xb1a31d node::AsyncHooks::FailWithCorruptedAsyncStack(double) [node]
 2: 0xb1e0cc node::AsyncHooks::pop_async_context(double) [node]
 3: 0xad0d0a node::InternalCallbackScope::Close() [node]
 4: 0xad1109 node::InternalMakeCallback(node::Environment*, v8::Local<v8::Object>, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*, node::async_context) [node]
 5: 0xae3520 node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*) [node]
 6: 0xbe13f6 node::worker::MessagePort::OnMessage(node::worker::MessagePort::MessageProcessingMode) [node]
 7: 0x16714b6  [node]
 8: 0x1683a24  [node]
 9: 0x1671e1e uv_run [node]
10: 0xad1a8d node::SpinEventLoop(node::Environment*) [node]
11: 0xc64a1a node::worker::Worker::Run() [node]
12: 0xc64ff8  [node]
13: 0x7fdd9bc94ac3  [/lib/x86_64-linux-gnu/libc.so.6]
14: 0x7fdd9bd26850  [/lib/x86_64-linux-gnu/libc.so.6]

i am sharing few screenshots of the running workflows
dont know if the issue with timers.

Can you look at open issue [Bug] Worker crashes with "async hook stack has become corrupted" on Workflow Task timeout · Issue #939 · temporalio/sdk-typescript · GitHub
and see if this helps you? Would check your workflow code for infinite loops as well as mentioned there.

Thank you so much for the reply. Will check it out

It seems like its is trying to replay, It has one while loop added log but it is logged only once
and it is replaying the workflow 5 minutes after the worker has started takes forever to debug
can you guys spot anything wrong here. is it running older workflow or something but that doesnt make sense becoz it is printing the log added

its the infinite loop thanks i have removed workflow able to debug with history replays
is there a reason the logs are suppressed

glad you got it resolved

is there a reason the logs are suppressed

can you give bit more info on what logs?