From 50c972f042655db570e2d314f32d334d4c530174 Mon Sep 17 00:00:00 2001 From: Vincenzo Mauro Date: Tue, 5 Sep 2023 12:16:52 +0100 Subject: [PATCH 1/2] updated azure pipelines agentpool --- .pipelines/azure-pipelines.yml | 6 +++--- test/test_load.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pipelines/azure-pipelines.yml b/.pipelines/azure-pipelines.yml index 69097dc1..44fa40bf 100644 --- a/.pipelines/azure-pipelines.yml +++ b/.pipelines/azure-pipelines.yml @@ -35,7 +35,7 @@ stages: Name: test_sgx_no_prefix_tree DisplayName: Test (SGX, no prefix tree) Platform: sgx - Pool: 1es-dcv3 + Pool: 1es-dc-pool Environment: ENABLE_PREFIX_TREE: OFF FunctionalTestArguments: '--enable-perf' @@ -46,7 +46,7 @@ stages: Name: test_sgx DisplayName: Test (SGX, with prefix tree) Platform: sgx - Pool: 1es-dcv3 + Pool: 1es-dc-pool Environment: ENABLE_PREFIX_TREE: ON FunctionalTestArguments: '--enable-prefix-tree --enable-faketime' @@ -67,7 +67,7 @@ stages: Name: test_sgx_docker DisplayName: Test (SGX on Docker, no prefix tree) Platform: sgx - Pool: 1es-dcv3 + Pool: 1es-dc-pool Variant: Docker ImageFilename: scitt-ccf-ledger-sgx.tar Environment: diff --git a/test/test_load.py b/test/test_load.py index aec7d078..67d6e9c1 100644 --- a/test/test_load.py +++ b/test/test_load.py @@ -11,7 +11,7 @@ from pyscitt.client import Client NUM_CLAIMS = 100 -LOCUST_PEAK_USERS = 500 +LOCUST_PEAK_USERS = 100 LOCUST_USERS_SPAWN_RATE = 10 LOCUST_RUNTIME_SEC = 60 From cc3b79a8d7b8dc6be190dbbfb27e08742d1da468 Mon Sep 17 00:00:00 2001 From: Vincenzo Mauro Date: Tue, 5 Sep 2023 12:50:38 +0100 Subject: [PATCH 2/2] Decreased spawn rate to 5 in test_load --- test/test_load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_load.py b/test/test_load.py index 67d6e9c1..ef006ef5 100644 --- a/test/test_load.py +++ b/test/test_load.py @@ -12,7 +12,7 @@ NUM_CLAIMS = 100 LOCUST_PEAK_USERS = 100 -LOCUST_USERS_SPAWN_RATE = 10 +LOCUST_USERS_SPAWN_RATE = 5 LOCUST_RUNTIME_SEC = 60