Reconfigure vmware-nsx project

Change-Id: I42512ee0983f84d599ca4a063718c4ee51b79686
This commit is contained in:
Ilya Shakhat 2015-06-15 12:05:54 +03:00
parent 1a8c2369ed
commit adee1bd9ae
2 changed files with 3 additions and 3 deletions

View File

@ -13048,8 +13048,8 @@
},
{
"module": "vmware-nsx",
"uri": "git://git.openstack.org/stackforge/vmware-nsx.git",
"organization": "stackforge",
"uri": "git://git.openstack.org/openstack/vmware-nsx.git",
"organization": "openstack",
"releases": [
{
"release_name": "ignored",

View File

@ -130,11 +130,11 @@ class Git(Vcs):
os.chdir(self.sources_root)
try:
sh.git('clone', self.repo['uri'])
os.chdir(self.folder)
except sh.ErrorReturnCode as e:
LOG.error('Unable to clone git repo %s. Ignore it',
self.repo['uri'])
LOG.exception(e)
os.chdir(self.folder)
else:
os.chdir(self.folder)
try: