Skip to content

Commit

Permalink
Merge pull request #51 from OrleansContrib/chore/houseKeeping
Browse files Browse the repository at this point in the history
Few housekeeping tasks
  • Loading branch information
Kritner authored Jan 20, 2024
2 parents 9921e51 + 2524f74 commit 76715ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
}
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<Version>3.4.244</Version>
<PrivateAssets>all</PrivateAssets>
</PackageVersion>
<PackageVersion Include="OrleansDashboard" Version="7.0.0" />
<PackageVersion Include="OrleansDashboard" Version="7.2.2" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageVersion Include="xunit" Version="2.4.1" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
3 changes: 2 additions & 1 deletion test/Orleans.SyncWork.Tests/TestClusters/ClusterFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public void Configure(ISiloBuilder siloBuilder)
/// <returns>The max concurrency to register to the <see cref="LimitedConcurrencyLevelTaskScheduler"/>.</returns>
private static int GetMaxConcurrentGrainWork()
{
var concurrentWork = Environment.ProcessorCount - 2;
var concurrentWork = Environment.ProcessorCount - 4;

if (concurrentWork <= 0)
concurrentWork = 1;

Expand Down

0 comments on commit 76715ba

Please sign in to comment.