String errMsg = "Couldn't lease " + Integer.toString(count) + " tag:" +
groupTag + " after " + retryCount + " attempts.";
log.warning(errMsg);
if (handleList == null) { // Couldn't communicate with Task service.
throw new TransientFailureException(errMsg);
}
return masterHandleList; // Return what we've got, could be partial.
}