| 3626 | } |
| 3627 | |
| 3628 | void HandleClientConnectZK(const std::vector<std::string> parts, |
| 3629 | ::fedb::client::TabletClient* client) { |
| 3630 | bool ok = client->ConnectZK(); |
| 3631 | if (ok) { |
| 3632 | std::cout << "connect zk ok" << std::endl; |
| 3633 | } else { |
| 3634 | std::cout << "Fail to connect zk" << std::endl; |
| 3635 | } |
| 3636 | } |
| 3637 | |
| 3638 | void HandleClientDisConnectZK(const std::vector<std::string> parts, |
| 3639 | ::fedb::client::TabletClient* client) { |
no test coverage detected