Fix keeper build

This commit is contained in:
kssenii 2024-02-21 18:47:17 +01:00
parent 94c44cefc8
commit 4e3f2aae40
2 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <Common/ThreadPool.h> #include <Common/ThreadPool.h>
#include <Common/callOnce.h> #include <Common/callOnce.h>
#include <Disks/IO/IOUringReader.h> #include <Disks/IO/IOUringReader.h>
#include <Storages/StorageS3Settings.h>
#include <Core/ServerSettings.h> #include <Core/ServerSettings.h>

View File

@ -163,6 +163,8 @@ public:
zkutil::ZooKeeperPtr getZooKeeper() const; zkutil::ZooKeeperPtr getZooKeeper() const;
const StorageS3Settings & getStorageS3Settings() const; const StorageS3Settings & getStorageS3Settings() const;
const String & getUserName() const { static std::string user; return user; }
}; };
} }