Repository: stratos Updated Branches: refs/heads/master 8391711e0 -> 0e53a08ab
Fixed Removing single quote character being added to ports in PCA Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/0e53a08a Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/0e53a08a Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/0e53a08a Branch: refs/heads/master Commit: 0e53a08ab645c499a550fbb960eb14dab27fcd31 Parents: 8391711 Author: Gayan Gunarathne <[email protected]> Authored: Thu Aug 13 11:48:35 2015 +0530 Committer: Gayan Gunarathne <[email protected]> Committed: Thu Aug 13 11:48:35 2015 +0530 ---------------------------------------------------------------------- .../src/main/python/cartridge.agent/cartridge.agent/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/0e53a08a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/config.py ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/config.py b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/config.py index ccc1b8f..7476cc7 100644 --- a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/config.py +++ b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/config.py @@ -264,7 +264,7 @@ class Config: Config.application_id = Config.read_property(constants.APPLICATION_ID) Config.service_name = Config.read_property(constants.SERVICE_NAME) Config.cluster_id = Config.read_property(constants.CLUSTER_ID) - self.ports = str(self.read_property(constants.PORTS)).replace("'","").split("|") + Config.ports = Config.read_property(constants.PORTS)).replace("'","").split("|") Config.is_multiTenant = Config.read_property(constants.MULTITENANT) Config.tenant_id = Config.read_property(constants.TENANT_ID)
