return c;
}
private List<ContextConfiguration> getContextConfigurationsOrEmptyOnError(Map<String, String> metaData) {
try {
ConfigPersistenceService persistence = getConfigPersistenceService();
return persistence.load(metaData);
} catch (Exception e) {
LOGGER.error("Error loading context configuration from configuration persistence", e);
return Collections.emptyList();
}
}