Skip to content

Commit 09a7948

Browse files
committed
First fix proposed from JessicaFM@ddb8f70
1 parent fc35dee commit 09a7948

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

execution_process_metrics_collector/collector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,9 @@ def process_metrics_collector(
594594
str(len(child_d["threads_processor_num"])),
595595
str(len(child_d["threads_core_num"])),
596596
str(len(child_d["threads_cpu_num"])),
597-
" ".join(child_d["threads_processor_num"]),
598-
" ".join(child_d["threads_core_num"]),
599-
" ".join(child_d["threads_cpu_num"]),
597+
" ".join(map(str, child_d["threads_processor_num"])),
598+
" ".join(map(str, child_d["threads_core_num"])),
599+
" ".join(map(str, child_d["threads_cpu_num"])),
600600
str(child_d["status"]),
601601
str(c_io.read_count),
602602
str(c_io.write_count),

0 commit comments

Comments
 (0)