From ed068ff0a92c8bf77ecddc305cfb2c18fb82a964 Mon Sep 17 00:00:00 2001 From: Vincent-Philippe Lauzon Date: Tue, 24 Oct 2023 14:36:10 -0400 Subject: [PATCH] Update integration-test-infra-deploy.bicep --- deployment/integration-test/integration-test-infra-deploy.bicep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/integration-test/integration-test-infra-deploy.bicep b/deployment/integration-test/integration-test-infra-deploy.bicep index 834188a..acfaa6b 100644 --- a/deployment/integration-test/integration-test-infra-deploy.bicep +++ b/deployment/integration-test/integration-test-infra-deploy.bicep @@ -28,7 +28,7 @@ resource intTestCluster 'Microsoft.Kusto/clusters@2022-12-29' = { } } -@batchSize(10) +@batchSize(5) resource intTestDbs 'Microsoft.Kusto/clusters/databases@2022-12-29' = [for i in range(0, length(prefixes) * intTestDbCountPerPrefix): { name: '${prefixes[i / intTestDbCountPerPrefix]}${format('{0:D8}', i % intTestDbCountPerPrefix + 1)}' location: resourceGroup().location