Skip to content

Commit

Permalink
Merge pull request #999 from McAndersDK/master
Browse files Browse the repository at this point in the history
Changed the Threadcount to 100
  • Loading branch information
adamdriscoll authored Aug 1, 2019
2 parents a7012a9 + 7a15525 commit a9c0509
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/UniversalDashboard/Execution/ScheduledEndpointManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public async Task StartAsync(CancellationToken cancellationToken)

var props = new NameValueCollection
{
{ "quartz.serializer.type", "binary" }
{ "quartz.serializer.type", "binary" },
{ "quartz.threadPool.threadCount", "100" }
};
var factory = new StdSchedulerFactory(props);

Expand Down

0 comments on commit a9c0509

Please sign in to comment.