You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 19, 2023. It is now read-only.
In SlackConnection.Close the _pingPongMonitor is not stopped. Therefore the Timer in the ping-pong monitor keeps a reference and holds the connection alive (no GC) + it tries to ping-pong every 5 s although I closed the corresponding SlackConnection.
I suggest adding a method StopMonitor to IPingPongMonitor which disables the timer:
public void StopMonitor()
{
_timer?.Dispose();
_timer = null;
}