| 742 | } |
| 743 | |
| 744 | void RemoteTabletNode::DoCompactTablet(google::protobuf::RpcController* controller, |
| 745 | const CompactTabletRequest* request, |
| 746 | CompactTabletResponse* response, |
| 747 | google::protobuf::Closure* done) { |
| 748 | uint64_t id = request->sequence_id(); |
| 749 | LOG(INFO) << "run RPC (CompactTablet) id: " << id; |
| 750 | compact_pending_counter.Dec(); |
| 751 | tabletnode_impl_->CompactTablet(request, response, done); |
| 752 | LOG(INFO) << "finish RPC (CompactTablet) id: " << id; |
| 753 | } |
| 754 | |
| 755 | void RemoteTabletNode::DoUpdate(google::protobuf::RpcController* controller, |
| 756 | const UpdateRequest* request, UpdateResponse* response, |
nothing calls this directly
no test coverage detected