-
Notifications
You must be signed in to change notification settings - Fork 10.4k
[release/6.0] Pass /norestart to Hosting Bundle nested bundles #47545
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
|
Hi @wtgodbe. If this is not a tell-mode PR, please make sure to follow the instructions laid out in the servicing process document. |
|
Hey @dotnet/aspnet-build, looks like this PR is something you want to take a look at. |
|
Hi @wtgodbe. Please make sure you've updated the PR description to use the Shiproom Template. Also, make sure this PR is not marked as a draft and is ready-to-merge. To learn more about how to prepare a servicing PR click here. |
|
@BrennanConroy there's a consistent SignalR test failure on MacOS 11, could you take a look? It doesn't appear to be related to this change.
|
|
You didn't copy the actual error: |
You're not aware of anything the SignalR.Common tests do that's "special"? Only that work item is failing, and it's happened on each of the 4 CI runs in this PR. I don't see how it could be related to this hosting bundle change, but it didn't happen in #47527 so it's either transient or something changed on the agents. I'll try re-running while I see if I can dig anything up. |
|
Looking at a recent successful and this PR shows a difference in macos version. Looking at the passed test output from https://helixre107v0xdeko0k025g8.blob.core.windows.net/dotnet-aspnetcore-refs-pull-47527-merge-e18dac652a42493182/Microsoft.AspNetCore.SignalR.Common.Tests--net6.0/1/console.ff2721b3.log?helixlogtype=result the only oddity I can think of is items like: |
|
I asked in First Responders if it's a known issue. Worst case scenario we could just bump to MacOs 12 like 7.0: aspnetcore/eng/targets/Helix.Common.props Line 31 in 10fef4f
|
|
Hi @wtgodbe. This PR was just approved to be included in the upcoming servicing release. Somebody from the @dotnet/aspnet-build team will get it merged when the branches are open. Until then, please make sure all the CI checks pass and the PR is reviewed. |
|
Huh, guess it's transient |
|
That run ran an macos-11.6.6 |
|
I'll see if I can get a run of #47560 on 11.6.8 |
Backport of #47542 to release/6.0
/cc @wtgodbe
Pass /norestart to Hosting Bundle nested bundles
Ensure that when
/norestartis passed on the command line to the hosting bundle, the user sees the expected behavior (no restart)Description
WiX doesn't pass command line args to nested bundles/packages, since the nested package could be any arbitrary .exe. This means when that today, when the user passes /norestart to the hosting bundle in a
repairoruninstallcommand, they'll still be prompted to restart. Always passing/norestartto these commands will give us the behavior that users would expect (/norestart= no restart, no/norestart= restart, prompted from the hosting bundle itself).Fixes #47544
Customer Impact
Fulfills request from the Office team
Regression?
Risk
These
/norestartargs will only have any effect when the user passes/norestartto the hosting bundle. The risk is if there's a scenario I haven't thought of.Verification
Packaging changes reviewed?
When servicing release/2.1