diff --git a/cmake/dependencies.cmake b/cmake/dependencies.cmake index 8ec665a2..8f1282b7 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 34e0e01d5a528bc9fc91a8abe32b701313791a4b GIT_PROGRESS TRUE) # Catch2 (tests only) diff --git a/include/eloqstore_module.h b/include/eloqstore_module.h index dad8bef2..e21d7240 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