Fix call to the compile_ovn function from Devstack

It was accepting 3 arguments where first one was "build_modules".
It wasn't used anywhere in that function so it was removed from
it.
This patch reflects that Devstack change in the Neutron's functional
tests script too.

Closes-Bug: #1957887

Depends-On: https://review.opendev.org/c/openstack/devstack/+/822717
Change-Id: Id8302bf23f48b227d05f1ec2a7136935b7b1c2fb
This commit is contained in:
Slawek Kaplonski 2021-12-22 16:02:34 +01:00
parent 5290a4b36a
commit cc0c60d3d8
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ function _install_base_deps {
compile_ovs False /usr /var
if [[ "$INSTALL_OVN" == "True" ]]; then
echo_summary "OVN_BRANCH: ${OVN_BRANCH}"
compile_ovn False /usr /var
compile_ovn /usr /var
fi
else
PACKAGES=$(get_packages general,neutron,q-agt,q-l3,openvswitch)