controller.getHostComponents(Collections.singleton(request));
State state = State.UNKNOWN;
for (ServiceComponentHostResponse schr : hostComponentResponses) {
State schState = getHostComponentState(schr);
if (schState.ordinal() < state.ordinal())
state = schState;
}
return state;
}
} catch (AmbariException e) {