Github user bvbharatk commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/784#discussion_r39242678 --- Diff: systemvm/patches/debian/config/opt/cloud/bin/cs/CsAddress.py --- @@ -105,8 +121,17 @@ def process(self): ip = CsIP(dev, self.config) for address in self.dbag[dev]: + if(address["nw_type"]!="public"): + continue + + #check if link is up + if (not self.check_if_link_exists(dev)): + logging.info("link %s dose not exist, so not processing"%dev) --- End diff -- fixed the typos.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---