Hi,
In kubernetes we see memory size rise over time and it continues to rise. I can repeat this behaviour in the local IDE in debug mode
If I swap the line
await _channel.PublishAsync(messageName, msg);
with
_channel.Publish(messageName, msg);
And no other changes then the memory stabilises around 100MB and can run for hours like that, seems to indicate there is something leaking memory in the async function.
Thanks
┆Issue is synchronized with this Jira Task by Unito
Hi,
In kubernetes we see memory size rise over time and it continues to rise. I can repeat this behaviour in the local IDE in debug mode
If I swap the line
await _channel.PublishAsync(messageName, msg);with
_channel.Publish(messageName, msg);And no other changes then the memory stabilises around 100MB and can run for hours like that, seems to indicate there is something leaking memory in the async function.
Thanks
┆Issue is synchronized with this Jira Task by Unito