diff --git a/cpp/CHANGELOG.md b/cpp/CHANGELOG.md index e81e61d21a..ce3957e821 100644 --- a/cpp/CHANGELOG.md +++ b/cpp/CHANGELOG.md @@ -7,6 +7,7 @@ Please mark all change in change log and use the ticket from JIRA. ## Bug - MS-411 - Fix metric unittest linking error - MS-412 - Fix gpu cache logical error +- MS-416 - ExecutionEngineImpl::GpuCache has not return value cause crash ## Improvement - MS-327 - Clean code for milvus diff --git a/cpp/src/db/engine/ExecutionEngineImpl.cpp b/cpp/src/db/engine/ExecutionEngineImpl.cpp index 7489e7849e..7ae48649fb 100644 --- a/cpp/src/db/engine/ExecutionEngineImpl.cpp +++ b/cpp/src/db/engine/ExecutionEngineImpl.cpp @@ -273,6 +273,8 @@ Status ExecutionEngineImpl::Cache() { Status ExecutionEngineImpl::GpuCache(uint64_t gpu_id) { zilliz::milvus::cache::GpuCacheMgr::GetInstance(gpu_id)->InsertItem(location_, index_); + + return Status::OK(); } // TODO(linxj): remove.