From: Kai Date: Sun, 19 Jan 2020 08:34:54 +0000 (+0800) Subject: delete the section that it always evaluate to false X-Git-Tag: 1.0.0~10 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=5cfa2de9371778236c1548a1961413d47abd4eb2;p=dcaegen2%2Fanalytics%2Ftca-gen2.git delete the section that it always evaluate to false Issue-ID: DCAEGEN2-2031 Signed-off-by: Kai Lu Change-Id: I062293a1c96f609d652162676c12b80707e81162 --- diff --git a/dcae-analytics/dcae-analytics-web/src/main/java/org/onap/dcae/analytics/web/spring/ConfigBindingServiceEnvironmentPostProcessor.java b/dcae-analytics/dcae-analytics-web/src/main/java/org/onap/dcae/analytics/web/spring/ConfigBindingServiceEnvironmentPostProcessor.java index 59fca64..5fa82d6 100644 --- a/dcae-analytics/dcae-analytics-web/src/main/java/org/onap/dcae/analytics/web/spring/ConfigBindingServiceEnvironmentPostProcessor.java +++ b/dcae-analytics/dcae-analytics-web/src/main/java/org/onap/dcae/analytics/web/spring/ConfigBindingServiceEnvironmentPostProcessor.java @@ -31,7 +31,6 @@ import org.onap.dcae.analytics.model.AnalyticsProfile; import org.onap.dcae.analytics.model.configbindingservice.ConfigBindingServiceConstants; import org.onap.dcae.analytics.model.util.function.JsonStringToMapFunction; import org.onap.dcae.analytics.web.config.SystemConfig; -import org.onap.dcae.analytics.web.exception.AnalyticsValidationException; import org.onap.dcae.analytics.web.exception.EnvironmentLoaderException; import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsClient; import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsClientFactory; @@ -241,12 +240,6 @@ public class ConfigBindingServiceEnvironmentPostProcessor implements Environment JsonElement jsonConfig = jsonObject.get(ConfigBindingServiceConstants.CONFIG); Optional configServiceJsonOptional = Optional.of(jsonConfig.toString()); - if (!configServiceJsonOptional.isPresent()) { - final String errorMessage = - "Unable to get fetch application configuration from config binding service"; - throw new AnalyticsValidationException(errorMessage, - new IllegalStateException(errorMessage)); - } // convert fetch config binding service json string to Map of property key and // values