From 6415ee8cd97acddd604ddbf6714a1e71ead9e7ee Mon Sep 17 00:00:00 2001 From: aoiasd <45024769+aoiasd@users.noreply.github.com> Date: Wed, 10 May 2023 10:01:19 +0800 Subject: [PATCH] Use boost 1.79 to avoid queue memory leak (#23977) Signed-off-by: aoiasd --- internal/core/conanfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/core/conanfile.py b/internal/core/conanfile.py index e190f85446..9ccafab196 100644 --- a/internal/core/conanfile.py +++ b/internal/core/conanfile.py @@ -6,7 +6,7 @@ class MilvusConan(ConanFile): settings = "os", "compiler", "build_type", "arch" requires = ( "rocksdb/6.29.5", - "boost/1.81.0", + "boost/1.79.0", "onetbb/2021.7.0", "nlohmann_json/3.11.2", "zstd/1.5.5", @@ -73,7 +73,6 @@ class MilvusConan(ConanFile): self.options["boost"].without_graph = True self.options["boost"].without_graph_parallel = True self.options["boost"].without_nowide = True - self.options["boost"].without_url = True def imports(self): self.copy("*.dylib", "../lib", "lib")