-
Notifications
You must be signed in to change notification settings - Fork 81
Description
Pull request
Type of problem
Incorrect contents in the PR
Description of the issue
The [main] Source code updates from dotnet/dotnet (dotnet/runtime#118514) PR looked correct when we scanned through it, but we overlooked that some of the changes it included were actually reverting a few recent PRs into dotnet/runtime rather than reflecting those changes.
These PRs were reverted with this code flow:
- fixing a regression in regions related to UOH allocations during BGC (dotnet/runtime#118567)
- Make FilePatternMatch.Stem non-nullable. (dotnet/runtime#118410)
- Ensure we track MakeGenericType (dotnet/runtime#118479)
Each of those PRs was merged during the PT evening of August 11. The code flow PR was created August 7 and the bef141ffdc5f5d87678e81b2fb271e5d3c7326d7 commit (Backflow from https://github.com/dotnet/dotnet / ca3dd2c build 278938) was added into the PR on the PT morning of August 12, with that "Backflow" commit causing the revert.
@mmitche created a PR to Revert backflow and re-apply VMR build (dotnet/runtime#118657), which will remedy this particular error, and he filed Local backflow doesn't operate like the VMR backflow (dotnet/arcade-services#5147) to capture another issue observed while fixing this.