Skip to content

Commit

Permalink
Merge pull request #1926 from EventStore/increase-monitoring-queue-sl…
Browse files Browse the repository at this point in the history
…ow-threshold

Increase the slow queue message threshold to 800ms for the MonitoringQueue
  • Loading branch information
avish0694 committed May 2, 2019
2 parents 0dd3c30 + 5955a82 commit f0df2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventStore.Core/ClusterVNode.cs
Expand Up @@ -161,7 +161,7 @@ public class ClusterVNode :
var monitoringInnerBus = new InMemoryBus("MonitoringInnerBus", watchSlowMsg: false);
var monitoringRequestBus = new InMemoryBus("MonitoringRequestBus", watchSlowMsg: false);
var monitoringQueue = new QueuedHandlerThreadPool(monitoringInnerBus, "MonitoringQueue", true,
TimeSpan.FromMilliseconds(100));
TimeSpan.FromMilliseconds(800));
var monitoring = new MonitoringService(monitoringQueue,
monitoringRequestBus,
_mainQueue,
Expand Down

0 comments on commit f0df2e7

Please sign in to comment.