diff --git a/locust/runners.py b/locust/runners.py index ed67bc9954..83560c8c74 100644 --- a/locust/runners.py +++ b/locust/runners.py @@ -324,7 +324,7 @@ def monitor_cpu_and_memory(self) -> NoReturn: self.environment.events.cpu_warning.fire(environment=self.environment, cpu_usage=self.current_cpu_usage) if not self.cpu_warning_emitted: logging.warning( - f"CPU usage above {CPU_WARNING_THRESHOLD}%! This may constrain your throughput and may even give inconsistent response time measurements! See https://docs.locust.io/en/stable/running-locust-distributed.html for how to distribute the load over multiple CPU cores or machines" + f"CPU usage above {CPU_WARNING_THRESHOLD}%! This may constrain your throughput and may even give inconsistent response time measurements! See https://docs.locust.io/en/stable/running-distributed.html for how to distribute the load over multiple CPU cores or machines" ) self.cpu_warning_emitted = True gevent.sleep(CPU_MONITOR_INTERVAL)