EventStore / EventStore-Client-Dotnet

Dotnet Client SDK for the Event Store gRPC Client API written in C#
Other
140 stars 38 forks source link

Client continues to invoke the ChannelInfo factory after being disposed #257

Closed timothycoleman closed 1 year ago

timothycoleman commented 1 year ago

The channels themselves have been disposed so this doesn't result in additional external calls, but the SharingProvider continues retrying indefinitely, causing a lot of exceptions.

This is mitigated by the fact that the typical usage is to instantiate a singleton of the client and not dispose it (but we should definitely fix it still)

DEV-94