throws IOException, InterruptedException {
Collection<BlackListInfo> blackListed = getBlackListedTrackers();
TaskTrackerInfo[] info = new TaskTrackerInfo[blackListed.size()];
int i = 0;
for (BlackListInfo binfo : blackListed) {
info[i++] = new TaskTrackerInfo(binfo.getTrackerName(),
binfo.getReasonForBlackListing(), binfo.getBlackListReport());
}
return info;
}