Remove some redundant files

This commit is contained in:
alesapin 2020-11-11 18:45:10 +03:00
parent d57b57156e
commit ade14da634
2 changed files with 2 additions and 3 deletions

View File

@ -125,8 +125,6 @@ private:
Watches watches; Watches watches;
Watches list_watches; /// Watches for 'list' request (watches on children). Watches list_watches; /// Watches for 'list' request (watches on children).
void createWatchCallBack(const String & path);
using RequestsQueue = ConcurrentBoundedQueue<RequestInfo>; using RequestsQueue = ConcurrentBoundedQueue<RequestInfo>;
RequestsQueue requests_queue{1}; RequestsQueue requests_queue{1};

View File

@ -1,4 +1,3 @@
#include <iostream>
#include <IO/ReadBufferFromString.h> #include <IO/ReadBufferFromString.h>
#include <IO/ReadHelpers.h> #include <IO/ReadHelpers.h>
#include <Poco/ConsoleChannel.h> #include <Poco/ConsoleChannel.h>
@ -14,6 +13,8 @@
using namespace std; using namespace std;
/// TODO: Remove ME
void checkEq(zkutil::ZooKeeper & zk, const std::string & path, const std::string & expected) void checkEq(zkutil::ZooKeeper & zk, const std::string & path, const std::string & expected)
{ {
auto result = zk.get(path); auto result = zk.get(path);