From 7a15525794b8c2fab1982bd7c8fb874432cbc0c1 Mon Sep 17 00:00:00 2001 From: McAndersDK Date: Thu, 1 Aug 2019 18:17:33 +0200 Subject: [PATCH] Changed the Threadcount to 100 This is to allow more than 10. it should be added to a config file instead. --- src/UniversalDashboard/Execution/ScheduledEndpointManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/UniversalDashboard/Execution/ScheduledEndpointManager.cs b/src/UniversalDashboard/Execution/ScheduledEndpointManager.cs index 257ed76c..fc9eab14 100644 --- a/src/UniversalDashboard/Execution/ScheduledEndpointManager.cs +++ b/src/UniversalDashboard/Execution/ScheduledEndpointManager.cs @@ -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);