In master branch, src/java/voldemort/client/protocol/admin/AdminClient.java,
line 860
public List<Integer> getAsyncRequestList(int nodeId, boolean showComplete) {
VAdminProto.AsyncOperationListRequest asyncOperationListRequest = VAdminProto.AsyncOperationListRequest.newBuilder()
.setShowComplete(showComplete)
.build();
but in src/proto/voldemort-admin.proto line 115
message AsyncOperationListRequest {
required int32 request_id = 1;
required bool show_complete = 2 [default = false];
}
The request_id is required for AsyncOperationListRequest, but not set in the
message composition.
Original issue reported on code.google.com by panxiaoz...@gmail.com on 12 May 2011 at 1:46
Original issue reported on code.google.com by
panxiaoz...@gmail.com
on 12 May 2011 at 1:46