Repository: stratos Updated Branches: refs/heads/master 8bed51d04 -> 8463bab97
fixing PCA get_repo method Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/8463bab9 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/8463bab9 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/8463bab9 Branch: refs/heads/master Commit: 8463bab97feee351658fbe8e13d3529b33b5ab9d Parents: 8bed51d Author: anuruddhal <[email protected]> Authored: Mon Jun 1 18:14:26 2015 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Tue Jun 2 17:58:43 2015 +0530 ---------------------------------------------------------------------- .../cartridge.agent/modules/artifactmgt/git/agentgithandler.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/8463bab9/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py index 5de2f6f..c23d33b 100644 --- a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py +++ b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/modules/artifactmgt/git/agentgithandler.py @@ -208,6 +208,7 @@ class AgentGitHandler: :return: GitRepository object :rtype: GitRepository """ + tenant_id = str(tenant_id) if tenant_id in AgentGitHandler.__git_repositories: return AgentGitHandler.__git_repositories[tenant_id]
