-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed issue where proc dump was not getting terminated on no crash #1849
Fixed issue where proc dump was not getting terminated on no crash #1849
Conversation
src/Microsoft.TestPlatform.Extensions.BlameDataCollector/BlameCollector.cs
Outdated
Show resolved
Hide resolved
} | ||
catch (Exception e) | ||
{ | ||
EqtTrace.Info($"ProcessDumpUtility : Failed to kill proc dump process with exception {e}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Info [](start = 25, length = 4)
nitpick: warning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description
Fixed issue where proc dump was not getting terminated on no crash
Related issue
Related to issue in VSO.CI where results directory was not getting cleaned up due to proc dump having a handle on a dump file after the execution completion
And a few formatting fixes in and around the code touched.