Merge pull request #26874 from Algunenano/fix_keeper_bench

Fix keeper bench compilation
This commit is contained in:
tavplubix 2021-07-28 14:05:11 +03:00 committed by GitHub
commit fc9a259100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ namespace DB
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
extern const int LOGICAL_ERROR;
}

View File

@ -181,7 +181,8 @@ std::vector<std::shared_ptr<Coordination::ZooKeeper>> Runner::getConnections()
"", /*identity*/
Poco::Timespan(0, 30000 * 1000),
Poco::Timespan(0, 1000 * 1000),
Poco::Timespan(0, 10000 * 1000)));
Poco::Timespan(0, 10000 * 1000),
nullptr));
}
return zookeepers;