Skip to content

Commit 6d3540f

Browse files
authored
use zero wait_time in base user class (#10)
1 parent 688c588 commit 6d3540f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chainbench/user/base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
import typing as t
33

4-
from locust import FastHttpUser, between
4+
from locust import FastHttpUser
55
from locust.contrib.fasthttp import RestResponseContextManager
66
from locust.exception import RescheduleTask
77

@@ -16,7 +16,6 @@ class BaseBenchUser(FastHttpUser):
1616
"""Base class for all benchmark users."""
1717

1818
abstract = True
19-
wait_time = between(0, 2)
2019

2120
rpc_path: str = ""
2221

0 commit comments

Comments
 (0)