diff --git a/cpp/cmake/ThirdPartyPackages.cmake b/cpp/cmake/ThirdPartyPackages.cmake index 8b888519f9e5b31a5fabd22ba881adde949f83d5..5b5d72f8852e5fe7198995e8dd5e2d99f88d3dcf 100644 --- a/cpp/cmake/ThirdPartyPackages.cmake +++ b/cpp/cmake/ThirdPartyPackages.cmake @@ -230,7 +230,7 @@ endif() if(DEFINED ENV{MILVUS_BZIP2_URL}) set(BZIP2_SOURCE_URL "$ENV{MILVUS_BZIP2_URL}") else() - set(BZIP2_SOURCE_URL "https://fossies.org/linux/misc/bzip2-${BZIP2_VERSION}.tar.gz") + set(BZIP2_SOURCE_URL "https://sourceware.org/pub/bzip2/bzip2-${BZIP2_VERSION}.tar.gz") endif() if(DEFINED ENV{MILVUS_EASYLOGGINGPP_URL}) diff --git a/cpp/unittest/server/cache_test.cpp b/cpp/unittest/server/cache_test.cpp index 9424563cad98a126652ad1fee2c1c6eb5663ca76..d45deb7475be5dc8752515c9c7a3bad6f376f80a 100644 --- a/cpp/unittest/server/cache_test.cpp +++ b/cpp/unittest/server/cache_test.cpp @@ -7,6 +7,7 @@ #include "cache/CpuCacheMgr.h" #include "cache/GpuCacheMgr.h" +#include "utils/Error.h" #include "wrapper/Index.h" #include "wrapper/knowhere/vec_index.h" @@ -29,7 +30,7 @@ public: class MockVecIndex : public engine::VecIndex { public: - virtual void BuildAll(const long &nb, + virtual server::KnowhereError BuildAll(const long &nb, const float *xb, const long *ids, const engine::Config &cfg, @@ -42,14 +43,14 @@ public: return engine::IndexType::INVALID; } - virtual void Add(const long &nb, + virtual server::KnowhereError Add(const long &nb, const float *xb, const long *ids, const engine::Config &cfg = engine::Config()) { } - virtual void Search(const long &nq, + virtual server::KnowhereError Search(const long &nq, const float *xq, float *dist, long *ids, @@ -70,7 +71,7 @@ public: return binset; } - virtual void Load(const zilliz::knowhere::BinarySet &index_binary) { + virtual server::KnowhereError Load(const zilliz::knowhere::BinarySet &index_binary) { }