Supun Sandeeptha
Supun Sandeeptha
I tried on Ubuntu 18.04
More Information About the Operating System @FutureSharks Virtualization: xen Operating System: Ubuntu 18.04.5 LTS Kernel: Linux 5.4.0-1030-aws Architecture: x86-64
Locust File ` from locust import HttpLocust, TaskSet, task, between from os import environ class WebsiteUser(HttpLocust): wait_time = between(5.0, 9.0) @task() def get_home_page(self): """ Gets / """ self.client.get("/") ` Lambda_Locust...