Package io.fabric8.container.process

Examples of io.fabric8.container.process.ZooKeeperPublishConfig.publish()


            if (exportConfig != null && !exportConfig.isEmpty() && curatorFramework != null) {
                JolokiaAgentHelper.substituteEnvironmentVariableExpressions(exportConfig, environmentVariables, getFabricService(), curatorFramework, true);
                ZooKeeperPublishConfig config = new ZooKeeperPublishConfig();
                try {
                    getConfigurer().configure(exportConfig, config);
                    config.publish(curatorFramework, null, null, null, environmentVariables);
                } catch (Exception e) {
                    LOG.warn("Failed to publish configuration " + configName + " of " + config + " due to: " + e, e);
                }
            }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.