From 2a6ccc98c525cbd1630f58a99cdfd016365aa21b Mon Sep 17 00:00:00 2001 From: Kobi Samoray Date: Tue, 28 May 2019 13:54:25 +0300 Subject: [PATCH] Devstack - use Neutron branch for related projects Use Neutron's branch while fetching neutron-related projects Change-Id: I672b18d1dd852a1d616ca5af74e9bf6773d2bb71 --- devstack/lib/nsx_common | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devstack/lib/nsx_common b/devstack/lib/nsx_common index f850768bae..54b23b3034 100644 --- a/devstack/lib/nsx_common +++ b/devstack/lib/nsx_common @@ -43,7 +43,7 @@ function install_neutron_projects { elif use_library_from_git $pkg; then echo "Project $pkg enabled explicitly from LIBS_FROM_GIT" else - sudo pip install -e "git+https://git.openstack.org/openstack/${pkg}#egg=${pkg_renamed}" + sudo pip install -e "git+https://git.openstack.org/openstack/${pkg}@${NEUTRON_BRANCH}#egg=${pkg_renamed}" sudo chown -R ${USER}:${USER} src/${pkg} fi done @@ -54,7 +54,7 @@ function install_neutron_projects { if is_service_enabled neutron; then echo "service Neutron is enabled explicitly by devstack" else - sudo pip install -e "git+https://git.openstack.org/openstack/neutron#egg=neutron" + sudo pip install -e "git+https://git.openstack.org/openstack/${pkg}@${NEUTRON_BRANCH}#egg=${pkg_renamed}" sudo chown -R ${USER}:${USER} src/neutron fi }