Update main.cpp

This commit is contained in:
alexey-milovidov 2021-03-17 22:12:10 +03:00 committed by GitHub
parent e1b11c786b
commit 3a8d7e9a48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ int main(int argc, char ** argv)
return 1; return 1;
} }
bool dump_ctime = (options.count("ctime")) ? true : false; bool dump_ctime = options.count("ctime");
zkutil::ZooKeeperPtr zookeeper = std::make_shared<zkutil::ZooKeeper>(options.at("address").as<std::string>()); zkutil::ZooKeeperPtr zookeeper = std::make_shared<zkutil::ZooKeeper>(options.at("address").as<std::string>());
@ -83,9 +83,8 @@ int main(int argc, char ** argv)
} }
std::cout << it->first << '\t' << response.stat.numChildren << '\t' << response.stat.dataLength; std::cout << it->first << '\t' << response.stat.numChildren << '\t' << response.stat.dataLength;
if (dump_ctime) { if (dump_ctime)
std::cout << '\t' << response.stat.ctime; std::cout << '\t' << response.stat.ctime;
}
std::cout << '\n'; std::cout << '\n';
for (const auto & name : response.names) for (const auto & name : response.names)