From 37f9b7ed1035a0e766f29d782163cead230c960a Mon Sep 17 00:00:00 2001 From: yanhe13 Date: Tue, 23 Apr 2024 08:25:39 +0000 Subject: [PATCH] update ais_bench/cluster/cluster_module.py. log fix Signed-off-by: yanhe13 --- ais_bench/cluster/cluster_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ais_bench/cluster/cluster_module.py b/ais_bench/cluster/cluster_module.py index 9c0d7dc..d68ef4e 100644 --- a/ais_bench/cluster/cluster_module.py +++ b/ais_bench/cluster/cluster_module.py @@ -245,7 +245,7 @@ def cluster_multi_get(node_file:str, src_path: str, dst_path: str, mode: str = " else: check_result(RESULT_FAILED, f"not supported mode: {mode}") - info_log(f"cluster_multi_get_success") + info_log(f"cluster_multi_get success") return RESULT_SUCCESS @@ -275,5 +275,5 @@ def cluster_single_get(node_file:str, src_path: str, dst_path: str, node_id: int node_dict = node_content.get(NODES_KEY_NAME)[node_id] single_get(node_id, node_dict, src_path, dst_path, ssh_key_path) - info_log(f"run cluster_single_get") + info_log(f"cluster_single_get success") return RESULT_SUCCESS -- Gitee