mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
[skip e2e]skip not supported index type for deploy test (#24549)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
This commit is contained in:
parent
432288619c
commit
c7ec3b31db
@ -32,7 +32,10 @@ def filter_collections_by_prefix(prefix):
|
|||||||
res = []
|
res = []
|
||||||
for col in col_list:
|
for col in col_list:
|
||||||
if col.startswith(prefix):
|
if col.startswith(prefix):
|
||||||
res.append(col)
|
if any(index_name in col for index_name in all_index_types):
|
||||||
|
res.append(col)
|
||||||
|
else:
|
||||||
|
logger.warning(f"collection {col} has no supported index, skip")
|
||||||
logger.info(f"filtered collections with prefix {prefix}: {res}")
|
logger.info(f"filtered collections with prefix {prefix}: {res}")
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user