fix milvus shutdown error (#1307)

This commit is contained in:
二毛
2024-07-01 14:55:40 +08:00
committed by GitHub
parent d2e9d1bf85
commit 7bb0f84bc3
4 changed files with 26 additions and 27 deletions

View File

@@ -133,8 +133,7 @@ public class TagMetaServiceImpl implements TagMetaService {
@Override
public List<TagResp> getTags(TagFilter tagFilter) {
List<TagResp> tagRespList = tagRepository.queryTagRespList(tagFilter);
return tagRespList;
return tagRepository.queryTagRespList(tagFilter);
}
@Override