Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1474#discussion_r59343588 --- Diff: systemvm/patches/debian/config/opt/cloud/bin/merge.py --- @@ -274,3 +277,46 @@ def __moveFile(self, origPath, path): os.makedirs(path) timestamp = str(int(round(time.time()))) os.rename(origPath, path + "/" + self.fileName + "." + timestamp) + + +class PrivateGatewayHack: + + + @classmethod + def update_network_type_for_privategateway(cls, dbag, data): + ip = data['router_guest_ip'] if 'router_guest_ip' in data.keys() else data['public_ip'] + + initial_data = cls.load_inital_data() --- End diff -- Should we have a conditional around load_initial_data? according to lines 148 and 154 this is called twice.
--- 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. ---