Skip to content

Commit b8c62d0

Browse files
committed
update thread name
1 parent c087ffb commit b8c62d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/slo/src/jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def run_read_jobs_query(args, driver, tb_name, max_id, metrics):
182182
futures = []
183183
for _ in range(args.read_threads):
184184
future = threading.Thread(
185-
name="slo_run_read",
185+
name="slo_run_read_query",
186186
target=run_reads_query,
187187
args=(driver, read_q, max_id, metrics, read_limiter, args.time, args.read_timeout / 1000),
188188
)
@@ -306,7 +306,7 @@ def run_write_jobs_query(args, driver, tb_name, max_id, metrics):
306306
futures = []
307307
for _ in range(args.write_threads):
308308
future = threading.Thread(
309-
name="slo_run_write",
309+
name="slo_run_write_query",
310310
target=run_writes_query,
311311
args=(driver, write_q, row_generator, metrics, write_limiter, args.time, args.write_timeout / 1000),
312312
)

0 commit comments

Comments
 (0)