From 0b99da93010f29ac7408a0bb4767a8e95de033d3 Mon Sep 17 00:00:00 2001 From: yanliang567 <82361606+yanliang567@users.noreply.github.com> Date: Tue, 28 Sep 2021 10:38:03 +0800 Subject: [PATCH] [skip ci]New property get node by node type (#8730) Signed-off-by: yanliang567 --- tests/python_client/common/milvus_sys.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/python_client/common/milvus_sys.py b/tests/python_client/common/milvus_sys.py index 082c59c006..1b785fb33a 100644 --- a/tests/python_client/common/milvus_sys.py +++ b/tests/python_client/common/milvus_sys.py @@ -72,3 +72,7 @@ class MilvusSys: def nodes(self): """get all the nodes in Milvus deployment""" return json.loads(self.sys_info.response).get('nodes_info') + + @property + def get_nodes_by_type(self, node_type=None): + return NotImplementedError