mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
Merge pull request #26874 from Algunenano/fix_keeper_bench
Fix keeper bench compilation
This commit is contained in:
commit
fc9a259100
@ -6,6 +6,7 @@ namespace DB
|
||||
|
||||
namespace ErrorCodes
|
||||
{
|
||||
extern const int BAD_ARGUMENTS;
|
||||
extern const int LOGICAL_ERROR;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user