fix(search): Fix replication (#2159)

* fix(search): Support replication

Signed-off-by: Vladislav Oleshko <vlad@dragonflydb.io>

---------

Signed-off-by: Vladislav Oleshko <vlad@dragonflydb.io>
This commit is contained in:
Vladislav 2023-11-13 11:58:54 +03:00 committed by GitHub
parent cc064a2582
commit 46292968ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 178 additions and 68 deletions

View file

@ -113,6 +113,10 @@ class Service : public facade::ServiceInterface {
return server_family_.script_mgr();
}
const ScriptMgr* script_mgr() const {
return server_family_.script_mgr();
}
ServerFamily& server_family() {
return server_family_;
}