From cc0c60d3d8404300a0148654022eb2c5e5fdc033 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 22 Dec 2021 16:02:34 +0100 Subject: [PATCH] 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 --- tools/configure_for_func_testing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure_for_func_testing.sh b/tools/configure_for_func_testing.sh index d9045e1b143..7dc3086f851 100755 --- a/tools/configure_for_func_testing.sh +++ b/tools/configure_for_func_testing.sh @@ -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)