From 5deffc747774cfa6f946eca65f3b4e994863b93e Mon Sep 17 00:00:00 2001 From: z1yoon <83934144+z1yoon@users.noreply.github.com> Date: Sun, 10 Nov 2024 22:09:41 +0800 Subject: [PATCH] Hot fix pg setup (#78) Co-authored-by: amber <> --- locust/locust-configmap.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/locust/locust-configmap.yaml b/locust/locust-configmap.yaml index e59dcc9c..b74417b6 100644 --- a/locust/locust-configmap.yaml +++ b/locust/locust-configmap.yaml @@ -10,13 +10,9 @@ data: class NshmUser(HttpUser): wait_time = between(1, 5) - @task - def web_service(self): - self.client.get("/") - @task def account_service(self): - self.client.get("/api/accounts/1") + self.client.get("/api/accounts/2") @task def item_service(self):