From d8eb9bc22981fc185663c16d04703df9c0410fb4 Mon Sep 17 00:00:00 2001 From: Eckart Liemke Date: Wed, 22 Oct 2025 17:55:15 +0200 Subject: [PATCH] Correct clusterSize defaults --- guides/multitenancy/mtxs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/multitenancy/mtxs.md b/guides/multitenancy/mtxs.md index d26b3b2f0a..bdf5e7ead7 100644 --- a/guides/multitenancy/mtxs.md +++ b/guides/multitenancy/mtxs.md @@ -1267,8 +1267,8 @@ The _SaasProvisioningService_ is a façade for the _DeploymentService_ to adapt "cds.xt.SaasProvisioningService": { "jobs": { "queueSize": 5, // default: 100 - "workerSize": 5, // default: 1 - "clusterSize": 5, // default: 1 + "workerSize": 5, // default: 4 + "clusterSize": 5, // default: 3 } } ```