Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/608#discussion_r34887204
--- Diff:
tajo-core/src/main/java/org/apache/tajo/master/event/TaskAttemptToSchedulerEvent.java
---
@@ -44,30 +43,19 @@ public TaskAttemptScheduleContext getContext() {
}
public static class TaskAttemptScheduleContext {
- private TajoContainerId containerId;
private String host;
- private RpcCallback<TajoWorkerProtocol.TaskRequestProto> callback;
+ private RpcCallback<TaskRequestProto> callback;
public TaskAttemptScheduleContext() {
}
- public TaskAttemptScheduleContext(TajoContainerId containerId,
- String host,
-
RpcCallback<TajoWorkerProtocol.TaskRequestProto> callback) {
- this.containerId = containerId;
+ public TaskAttemptScheduleContext(String host,
--- End diff --
Unused constructor
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---