fix type error in zookeeper

This commit is contained in:
Val 2020-07-04 16:39:17 +03:00
parent 8273248c4e
commit 147fa9fed9
2 changed files with 3 additions and 3 deletions

View File

@ -582,7 +582,7 @@ void ZooKeeper::removeChildren(const std::string & path)
void ZooKeeper::tryRemoveChildren(const std::string & path)
{
Strings children;
if (tryGetChildren(path, children) != Coordination::ZOK)
if (tryGetChildren(path, children) != Coordination::Error::ZOK)
return;
while (!children.empty())
{

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import subprocess
import os
@ -105,7 +105,7 @@ if __name__ == "__main__":
bridge_bin=args.bridge_binary,
cfg=args.configs_dir,
pth=args.clickhouse_root,
opts='-vv ' + ' '.join(args.pytest_args),
opts=' '.join(args.pytest_args),
img=DIND_INTEGRATION_TESTS_IMAGE_NAME,
name=CONTAINER_NAME,
command=args.command