From b35e35ebda1e81af8edcfc8b719187c50988cbbe Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Wed, 17 Nov 2021 20:49:11 +0800 Subject: [PATCH] [skip ci]Add time stamp for test (#12040) Signed-off-by: zhuwenxing --- tests/python_client/chaos/scripts/hello_milvus.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/python_client/chaos/scripts/hello_milvus.py b/tests/python_client/chaos/scripts/hello_milvus.py index 23a19996bf..2cd16808dc 100644 --- a/tests/python_client/chaos/scripts/hello_milvus.py +++ b/tests/python_client/chaos/scripts/hello_milvus.py @@ -106,4 +106,7 @@ parser = argparse.ArgumentParser(description='host ip') parser.add_argument('--host', type=str, default='127.0.0.1', help='host ip') args = parser.parse_args() +# add time stamp +import time +print(f"\nStart time: {time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))}") hello_milvus(args.host)