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
Using Visual Studio 2017 (15.3 Preview 6) to open Roslyn.sln.
RestoreOperationLogger.Do performs a blocking wait operation on thread pool threads totaling 1575 seconds, contributing to thread pool starvation. One of the following approaches should be used to avoid blocking calls on these threads:
Make Do (and its callers) properly asynchronous.
Use TaskCreationOptions.LongRunning (or equivalent) to ensure the call is made on a separate thread.
The following shows the back trace for this issue:
Using Visual Studio 2017 (15.3 Preview 6) to open Roslyn.sln.
RestoreOperationLogger.Do
performs a blocking wait operation on thread pool threads totaling 1575 seconds, contributing to thread pool starvation. One of the following approaches should be used to avoid blocking calls on these threads:Do
(and its callers) properly asynchronous.TaskCreationOptions.LongRunning
(or equivalent) to ensure the call is made on a separate thread.The following shows the back trace for this issue:
The text was updated successfully, but these errors were encountered: