Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: yangxuan <[email protected]>
  • Loading branch information
XuanYang-cn committed Nov 11, 2024
1 parent 0fc9f62 commit 7569c20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rate_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_rate_runner(db, insert_rate):
_, t = runner.run_with_rate()
log.info(f"insert run done, time={t}")

def test_read_write_runner(db, insert_rate, conc: list, search_stage: Iterable[float], stage_search_dur: int, local: bool=False):
def test_read_write_runner(db, insert_rate, conc: list, search_stage: Iterable[float], read_dur_after_write: int, local: bool=False):
cohere = Dataset.COHERE.manager(1_000_000)
if local is True:
source = DatasetSource.AliyunOSS
Expand All @@ -44,7 +44,7 @@ def test_read_write_runner(db, insert_rate, conc: list, search_stage: Iterable[f
dataset=cohere,
insert_rate=insert_rate,
search_stage=search_stage,
stage_search_dur=stage_search_dur,
read_dur_after_write=read_dur_after_write,
concurrencies=conc
)
rw_runner.run_read_write()
Expand Down

0 comments on commit 7569c20

Please sign in to comment.