about summary refs log tree commit diff
path: root/MatrixUtils.Web/Program.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-03-11 07:41:46 +0100
committerRory& <root@rory.gay>2025-03-11 07:41:46 +0100
commit90549fd2bce62723c35cc7d40551f1c5f2d2ba9d (patch)
tree100864824013a238a318e1f6e4f9b0952787e900 /MatrixUtils.Web/Program.cs
parentWork on rewriting homeserver resolution (diff)
downloadMatrixUtils-90549fd2bce62723c35cc7d40551f1c5f2d2ba9d.tar.xz
Synapse admin tooling, well known res work
Diffstat (limited to '')
-rw-r--r--MatrixUtils.Web/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixUtils.Web/Program.cs b/MatrixUtils.Web/Program.cs

index 8bc2c8f..8cab0fb 100644 --- a/MatrixUtils.Web/Program.cs +++ b/MatrixUtils.Web/Program.cs
@@ -28,7 +28,7 @@ builder.Services.AddWebWorkerService(webWorkerService => webWorkerService.TaskPool.MaxPoolSize = 2; // Below is telling the WebWorkerService TaskPool to set the initial size to 2 if running in a Window scope and 0 otherwise // This starts up 2 WebWorkers to handle TaskPool tasks as needed - webWorkerService.TaskPool.PoolSize = webWorkerService.GlobalScope == GlobalScope.Window ? 2 : 0; + webWorkerService.TaskPool.PoolSize = webWorkerService.GlobalScope == GlobalScope.Window ? 0 : 0; }); try {