We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73d252f + 57b6b38 commit b3fd9b3Copy full SHA for b3fd9b3
1 file changed
bbot/test/test_step_1/test_web_rate_limit.py
@@ -80,7 +80,7 @@ async def test_batch_rate_limit_min_wins(bbot_scanner):
80
# If min() works, dispatch should be paced at 10 rps (~400ms for 5 requests)
81
# If global wins, dispatch would be at 100 rps (~40ms for 5 requests)
82
start = time.monotonic()
83
- client.request_batch(configs, concurrency=50, rate_limit=10.0)
+ await client.request_batch(configs, concurrency=50, rate_limit=10.0)
84
elapsed = time.monotonic() - start
85
86
# 5 requests at 10 rps = 4 intervals × 100ms = ~400ms minimum
0 commit comments