mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix: Remove noexcept from CacheIndexToDiskInternal (#41725)
Related to #41219 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
d09763b73f
commit
bcf94a0754
@ -222,7 +222,7 @@ DiskFileManagerImpl::AddBatchIndexFiles(
|
||||
void
|
||||
DiskFileManagerImpl::CacheIndexToDiskInternal(
|
||||
const std::vector<std::string>& remote_files,
|
||||
const std::function<std::string()>& get_local_index_prefix) noexcept {
|
||||
const std::function<std::string()>& get_local_index_prefix) {
|
||||
auto local_chunk_manager =
|
||||
LocalChunkManagerSingleton::GetInstance().GetChunkManager();
|
||||
|
||||
|
||||
@ -160,7 +160,7 @@ class DiskFileManagerImpl : public FileManagerImpl {
|
||||
void
|
||||
CacheIndexToDiskInternal(
|
||||
const std::vector<std::string>& remote_files,
|
||||
const std::function<std::string()>& get_local_index_prefix) noexcept;
|
||||
const std::function<std::string()>& get_local_index_prefix);
|
||||
|
||||
template <typename DataType>
|
||||
std::string
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user