From 7ac749632a8b7377809b2b300218ddeabb749e22 Mon Sep 17 00:00:00 2001 From: Igor Gajsin Date: Tue, 27 Oct 2015 19:03:02 +0300 Subject: [PATCH] Set url_timeout in nova.conf The name of parameter was changed from neutron_url_timeout in 6.1 to url_timeout in Fuel 7.0. It requires some changes in the deployment script. Change-Id: I63a50bae1793d8b938c9dc525733064c95467d96 --- deployment_scripts/install_the_driver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/install_the_driver.sh b/deployment_scripts/install_the_driver.sh index 8b2f415..43fb5cf 100755 --- a/deployment_scripts/install_the_driver.sh +++ b/deployment_scripts/install_the_driver.sh @@ -28,7 +28,7 @@ function _restart_crm_resource { function _nova_patch { wget -O /usr/lib/python2.7/dist-packages/nova.patch "http://$ip:$port/plugins/$plugin_name-$plugin_version/nova.patch" && cd /usr/lib/python2.7/dist-packages/ ; patch -N -p1 < nova.patch - sed -i s/neutron_url_timeout=.*/neutron_url_timeout=3600/ /etc/nova/nova.conf + sed -i s/url_timeout=.*/url_timeout=3600/ /etc/nova/nova.conf }