diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-04-24 13:08:46 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-04-24 13:08:46 +0200 |
| commit | 0d67901e373ff8a2ab279d51c3c1f88adf68bfcf (patch) | |
| tree | 680fd707f8710287e86057e1320838d6f36cb838 | |
| parent | 13152bf09dcadf8807e1240be7ca84662d2ed397 (diff) | |
Dispose BlockingCollection
| -rw-r--r-- | Emby.Server.Implementations/Data/ConnectionPool.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Data/ConnectionPool.cs b/Emby.Server.Implementations/Data/ConnectionPool.cs index 6d28a5e43..a671eb165 100644 --- a/Emby.Server.Implementations/Data/ConnectionPool.cs +++ b/Emby.Server.Implementations/Data/ConnectionPool.cs @@ -72,6 +72,8 @@ public sealed class ConnectionPool : IDisposable connection.Dispose(); } + _connections.Dispose(); + _disposed = true; } } |
