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
MetricAggregator is the only place in this SDK which creates a new Thread for running background task. The code should be protected from ever throwing unhandled exception as it could crash the application. While no existing occurences are reported, this should be done to avoid issues like microsoft/ApplicationInsights-dotnet-server#1088
this.aggregationThread = new Thread(this.Run);
The text was updated successfully, but these errors were encountered:
MetricAggregator is the only place in this SDK which creates a new Thread for running background task. The code should be protected from ever throwing unhandled exception as it could crash the application. While no existing occurences are reported, this should be done to avoid issues like microsoft/ApplicationInsights-dotnet-server#1088
this.aggregationThread = new Thread(this.Run);
The text was updated successfully, but these errors were encountered: