1) Building is good

This commit is contained in:
Eric Tschetter 2013-03-07 18:46:51 -06:00
parent c3a871b942
commit b979096d74
1 changed files with 7 additions and 2 deletions

View File

@ -219,8 +219,13 @@ public class TaskMasterLifecycle
return taskQueue;
}
public TaskToolbox getTaskToolbox()
public TaskToolbox getTaskToolbox(Task task)
{
return taskToolbox;
return taskToolboxFactory.build(task);
}
public ResourceManagementScheduler getResourceManagementScheduler()
{
return resourceManagementScheduler;
}
}