EventStore/EventStore-Client-Dotnet

Client continues to invoke the ChannelInfo factory after being disposed

timothycoleman opened this issue · 0 comments

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