| 121 | } |
| 122 | |
| 123 | void RpcClient::ClearKV(const std::string& k) { |
| 124 | ClientCall<CtrlMethod::kClearKV> call; |
| 125 | call.mut_request()->set_key(k); |
| 126 | call(GetResponsibleStub(k)); |
| 127 | } |
| 128 | |
| 129 | void RpcClient::ClearMasterKV(const std::string& k) { |
| 130 | ClientCall<CtrlMethod::kClearKV> call; |
no test coverage detected