We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a903b commit 6849630Copy full SHA for 6849630
pkgs/sdk/client/src/LdClient.cs
@@ -982,13 +982,13 @@ void Dispose(bool disposing)
982
_dataSourceUpdateSink.UpdateStatus(DataSourceState.Shutdown, null);
983
984
_backgroundModeManager.BackgroundModeChanged -= OnBackgroundModeChanged;
985
- _connectionManager.Dispose();
986
- _dataStore.Dispose();
987
- _eventProcessor.Dispose();
988
foreach (var hook in _pluginHooks)
989
{
990
hook?.Dispose();
991
}
+ _connectionManager.Dispose();
+ _dataStore.Dispose();
+ _eventProcessor.Dispose();
992
993
// Reset the static Instance to null *if* it was referring to this instance
994
DetachInstance();
0 commit comments