Skip to content

Commit bb03081

Browse files
committed
Remove the MaxDegreeOfParallelism=ProcessorCount/2 workaround in the packer.
1 parent 707ff97 commit bb03081

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/tools/packer/DataCenterPacker.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ await Parallel.ForEachAsync(
2424
.EnumerateFiles("?*-?*.xml", SearchOption.AllDirectories)
2525
.OrderBy(static file => file.FullName, StringComparer.Ordinal)
2626
.Select(static (file, index) => (File: file, Index: index)),
27-
new ParallelOptions
28-
{
29-
MaxDegreeOfParallelism = Environment.ProcessorCount / 2,
30-
},
3127
async (tup, ct) =>
3228
{
3329
var file = tup.File;

0 commit comments

Comments
 (0)