From fc41717222da029274236714f1447fcba1277b06 Mon Sep 17 00:00:00 2001 From: Lee Yarwood Date: Wed, 23 Dec 2020 10:52:20 +0000 Subject: [PATCH] cinder: Double [DEFAULT]/rpc_response_timeout to 120 Bug #1873234 documents a number of CI failures caused by RPC requests from c-api to c-vol timing out due to `lvchange` taking longer than the default rpc_response_timeout of 60 seconds to complete. While the underlying reason for the slowness should be investigated by the cinder team a trivial workaround to the fallout created by these timeouts is to simply double the client RPC timeout used by c-api, allowing c-vol to return and overall the request to succeed. Change-Id: I53dc0ae10af6aa13f1349b58373932eb6a15ab02 Related-Bug: #1873234 --- lib/cinder | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/cinder b/lib/cinder index b892b91791..6c97e114a6 100644 --- a/lib/cinder +++ b/lib/cinder @@ -236,6 +236,11 @@ function configure_cinder { iniset $CINDER_CONF key_manager backend cinder.keymgr.conf_key_mgr.ConfKeyManager iniset $CINDER_CONF key_manager fixed_key $(openssl rand -hex 16) + # Avoid RPC timeouts in slow CI and test environments by doubling the + # default response timeout set by RPC clients. See bug #1873234 for more + # details and example failures. + iniset $CINDER_CONF DEFAULT rpc_response_timeout 120 + if is_service_enabled c-vol && [[ -n "$CINDER_ENABLED_BACKENDS" ]]; then local enabled_backends="" local default_name=""