await process() will never be resolved due to the function calling itself again and again causing unused references to dequeued messages to stay alive, resulting in a memory leak.
Made process() call asynchronous and added return when the function ends.
Fixes #79
await process()
will never be resolved due to the function calling itself again and again causing unused references to dequeued messages to stay alive, resulting in a memory leak.Made process() call asynchronous and added
return
when the function ends.