-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Add fix of process objects for processes that have exited. #16946
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
Conversation
daxian-dbw
left a comment
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.
LGTM.
I saw the same error thrown from the Get-PSHostProcessInfo test at https://dev.azure.com/powershell/PowerShell/_build/results?buildId=95294&view=logs&j=65e467a7-433b-584d-c8f4-72fcd5732f9d&t=6a14d04a-9a6d-5c41-f839-531117eeb032&l=3913
Will this change fix that too?
|
@daxian-dbw Yes, I intended to fix both |
src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
Outdated
Show resolved
Hide resolved
src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
Show resolved
Hide resolved
src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
Show resolved
Hide resolved
src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
Outdated
Show resolved
Hide resolved
|
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
Show resolved
Hide resolved
|
Open PRs should not be assigned to milestone, so they are not assigned to the wrong milestone after they are merged. For backport consideration, use a |
|
Open PRs should not be assigned to milestone, so they are not assigned to the wrong milestone after they are merged. For backport consideration, use a |
|
Failing tests are known issues. This change fixes the |
|
🎉 Handy links: |
PR Summary
This PR fixes the
Enter-PSHostProcessandGet-PSHostProcessInfocmdlets so that they will ignore processes that have already exited.PR Context
.NET GetProcess method sometimes returns process objects for processes that have recently exited. In addition, the exited process object will throw if some properties are accessed (process.ProcessName), causing the cmdlet to fail and in turn causing some tests to fail.
This fix ignores already exited process objects.
This appears to be a .NET 7 regression, and I have created an Issue in that repo:
dotnet/runtime#66096
PR Checklist
.h,.cpp,.cs,.ps1and.psm1files have the correct copyright headerWIP:or[ WIP ]to the beginning of the title (theWIPbot will keep its status check atPendingwhile the prefix is present) and remove the prefix when the PR is ready.(which runs in a different PS Host).