getConfigRespCmd = new GetConfigurationResponseCommand();
getConfigRespCmd.
setServiceGroups(((GetConfigurationCommand) command).getServiceGroupNames());
channelSender.sendToMember(getConfigRespCmd, sender);
} else if (command instanceof AckCommand) {
AckCommand cmd = (AckCommand) command;
cmd.setMemberId(TribesUtil.getHost(sender));
cmd.execute(configurationContext);
} else {
command.execute(configurationContext);
}
}