mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix: [2.5] Remove noexcept from CacheIndexToDiskInternal (#41221)
Related to #41219 Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
2e8445c2ef
commit
de6687e27d
@ -220,7 +220,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();
|
||||
|
||||
|
||||
@ -159,7 +159,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);
|
||||
|
||||
private:
|
||||
// local file path (abs path)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user