return null;
}
public Future<Response> manual(final WorkerContext context,
final Request req) {
ManualMessage mm = null;
try {
mm = ManualMessage.newBuilder().mergeFrom(req.getBody()).build();
} catch (InvalidProtocolBufferException e1) {
}
SocketLog.info("receive master to worker manual request,rid="
+ req.getRid() + ",historyId=" + mm.getHistoryId());
final String historyId = mm.getHistoryId();
final JobHistory history = context.getJobHistoryManager()
.findJobHistory(historyId);
Future<Response> f = context.getThreadPool().submit(
new Callable<Response>() {
public Response call() throws Exception {