From 7ad9dca924c1000e2059b8b0638c904fe37bb244 Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Fri, 28 Aug 2026 06:29:10 +0000 Subject: [PATCH 1/2] fix: identify EloqStore module with updated brpc --- cmake/dependencies.cmake | 2 +- include/eloqstore_module.h | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cmake/dependencies.cmake b/cmake/dependencies.cmake index 8ec665a2f..a335837e7 100644 --- a/cmake/dependencies.cmake +++ b/cmake/dependencies.cmake @@ -50,7 +50,7 @@ FetchContent_Declare(glog # seeds its glog/liburing discovery variables before making it available. FetchContent_Declare(brpc GIT_REPOSITORY https://github.com/eloqdata/brpc.git - GIT_TAG 02c3f2de6a79b3d4828a3f75b04096f06be929c5 + GIT_TAG 6d56abecbb9ce6c6b862a1bb6389f5bd920b34aa GIT_PROGRESS TRUE) # Catch2 (tests only) diff --git a/include/eloqstore_module.h b/include/eloqstore_module.h index dad8bef2f..e21d72400 100644 --- a/include/eloqstore_module.h +++ b/include/eloqstore_module.h @@ -19,6 +19,11 @@ class EloqStoreModule : public eloq::EloqModule } ~EloqStoreModule() = default; + eloq::ModuleType Type() const override + { + return eloq::ModuleType::kEloqStore; + } + void ExtThdStart(int thd_id) override; void ExtThdEnd(int thd_id) override; void Process(int thd_id) override; @@ -28,4 +33,4 @@ class EloqStoreModule : public eloq::EloqModule }; } // namespace eloqstore -#endif \ No newline at end of file +#endif From 31a7df3e238ed23756f6357495a0c178cac0fbca Mon Sep 17 00:00:00 2001 From: Jerry Zhao Date: Fri, 28 Aug 2026 08:03:16 +0000 Subject: [PATCH 2/2] build: pin brpc to merged maxclients commit --- cmake/dependencies.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/dependencies.cmake b/cmake/dependencies.cmake index a335837e7..8f1282b73 100644 --- a/cmake/dependencies.cmake +++ b/cmake/dependencies.cmake @@ -50,7 +50,7 @@ FetchContent_Declare(glog # seeds its glog/liburing discovery variables before making it available. FetchContent_Declare(brpc GIT_REPOSITORY https://github.com/eloqdata/brpc.git - GIT_TAG 6d56abecbb9ce6c6b862a1bb6389f5bd920b34aa + GIT_TAG 34e0e01d5a528bc9fc91a8abe32b701313791a4b GIT_PROGRESS TRUE) # Catch2 (tests only)