From: Tony Tkacik Date: Mon, 22 Sep 2014 12:36:53 +0000 (+0000) Subject: Merge "Bug 2014: Workaround for karaf listFeatures bug" X-Git-Tag: release/helium~24 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=2cef0547db072e5a64fd34cfa9c9766458596b97;hp=05a8052a457b2e53f06233f1a0b056d162118566;p=controller.git Merge "Bug 2014: Workaround for karaf listFeatures bug" --- diff --git a/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java b/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java index 1c094ad2dc..57052f9d60 100644 --- a/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java +++ b/opendaylight/config/config-persister-feature-adapter/src/main/java/org/opendaylight/controller/configpusherfeature/internal/FeatureConfigPusher.java @@ -26,6 +26,7 @@ import com.google.common.collect.LinkedHashMultimap; */ public class FeatureConfigPusher { private static final Logger logger = LoggerFactory.getLogger(FeatureConfigPusher.class); + private static final int MAX_RETRIES=100; private FeaturesService featuresService = null; private ConfigPusher pusher = null; /* @@ -82,7 +83,29 @@ public class FeatureConfigPusher { } private boolean isInstalled(Feature feature) { - List installedFeatures = Arrays.asList(featuresService.listInstalledFeatures()); + List installedFeatures= null; + boolean cont = true; + int retries = 0; + while(cont) { + try { + installedFeatures = Arrays.asList(featuresService.listInstalledFeatures()); + break; + } catch (Exception e) { + if(retries < MAX_RETRIES) { + logger.warn("Karaf featuresService.listInstalledFeatures() has thrown an exception, retry {}, Exception {}", retries,e); + try { + Thread.sleep(1); + } catch (InterruptedException e1) { + throw new IllegalStateException(e1); + } + retries++; + continue; + } else { + logger.error("Giving up on Karaf featuresService.listInstalledFeatures() which has thrown an exception, retry {}, Exception {}", retries,e); + throw e; + } + } + } return installedFeatures.contains(feature); }