From 416d27e89e0c1891921fee2a692086eb8fcd0307 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Wed, 11 Mar 2026 17:05:13 +0100 Subject: [PATCH] Add the config file reference argument to ``configure_keystoneauth`` In the nova library, some calls to ``configure_keystoneauth`` are called using a non existing local variable $conf. This should be the $NOVA_CONF variable instead. Closes-Bug: #2143929 Signed-off-by: Rodolfo Alonso Hernandez Change-Id: I7844237d511154f917f236b8f122bc2bf514991d --- lib/nova | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nova b/lib/nova index 8e0ea1756f..bf990132dc 100644 --- a/lib/nova +++ b/lib/nova @@ -644,7 +644,7 @@ function configure_cinder_access { # to use a user with the admin role for background tasks in nova to # be able to GET block-storage API resources owned by another project # since cinder has low-level "is_admin" checks in its DB API. - configure_keystoneauth $conf nova cinder + configure_keystoneauth $NOVA_CONF nova cinder if is_service_enabled tls-proxy; then CINDER_SERVICE_HOST=${CINDER_SERVICE_HOST:-$SERVICE_HOST} CINDER_SERVICE_PORT=${CINDER_SERVICE_PORT:-8776} @@ -654,7 +654,7 @@ function configure_cinder_access { # Configure access to manila. function configure_manila_access { - configure_keystoneauth $conf nova manila + configure_keystoneauth $NOVA_CONF nova manila } function configure_console_compute {