Skip to content

Commit

Permalink
Changed the Threadcount to 100
Browse files Browse the repository at this point in the history
This is to allow more than 10.
it should be added to a config file instead.
  • Loading branch information
McAndersDK authored Aug 1, 2019
1 parent a7012a9 commit 7a15525
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 7a15525

Please sign in to comment.