mirror of https://github.com/milvus-io/milvus.git
fix: not add index name in alter index properties (#38979)
#38967 Signed-off-by: lixinguo <xinguo.li@zilliz.com> Co-authored-by: lixinguo <xinguo.li@zilliz.com>pull/38821/head
parent
f0dae81494
commit
a89ac861da
|
@ -2232,6 +2232,7 @@ func (h *HandlersV2) alterIndexProperties(ctx context.Context, c *gin.Context, a
|
|||
req := &milvuspb.AlterIndexRequest{
|
||||
DbName: dbName,
|
||||
CollectionName: httpReq.CollectionName,
|
||||
IndexName: httpReq.IndexName,
|
||||
}
|
||||
extraParams := make([]*commonpb.KeyValuePair, 0, len(httpReq.Properties))
|
||||
for key, value := range httpReq.Properties {
|
||||
|
|
Loading…
Reference in New Issue