Skip to content

Commit

Permalink
Switch to FastHttpUser
Browse files Browse the repository at this point in the history
  • Loading branch information
petechd committed Jan 6, 2025
1 parent ca4485d commit b470aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions locustfile.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import os

from locust import HttpUser, constant
from locust import FastHttpUser, constant

from runner_benchmark.taskset import SurveyRunnerTaskSet


class SurveyRunnerScenario(HttpUser):
class SurveyRunnerScenario(FastHttpUser):
wait_time = constant(0)
tasks = [SurveyRunnerTaskSet]
host = os.getenv("HOST", "http://localhost:5000")

0 comments on commit b470aaa

Please sign in to comment.