From e0223dc984e4f0afd82f874e50e0b09266c87c60 Mon Sep 17 00:00:00 2001 From: dingbo Date: Tue, 12 Jul 2022 13:43:50 +0800 Subject: [PATCH] docs: test highvolume_example.py --- docs/examples/python/highvolume_example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/python/highvolume_example.py b/docs/examples/python/highvolume_example.py index 6683db7e15..d6f13d14d6 100644 --- a/docs/examples/python/highvolume_example.py +++ b/docs/examples/python/highvolume_example.py @@ -167,13 +167,13 @@ def main(): task_queues.append(queue) p = Process(target=run_write_task, args=(i, queue)) p.start() - logging.debug(f"WriteTask {i} started with pid {p.pid}") + logging.debug(f"WriteTask-{i} started with pid {p.pid}") write_processes.append(p) for i in range(READ_TASK_COUNT): p = Process(target=run_read_task, args=(i, task_queues)) p.start() - logging.debug(f"ReadTask {i} started with pid {p.pid}") + logging.debug(f"ReadTask-{i} started with pid {p.pid}") read_processes.append(p) try: -- GitLab