From 0378d590d310b9fce866c6fde46923dab155de44 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 7 Feb 2022 02:03:39 +0900 Subject: [PATCH] Fix typo causing a warning message This is follow up of 3c376bd733bff778002a01fb7b5f0dbc645d0e05 and fixes one typo included in that commit. Because of this, the following warning is always logged. (warning): The cross_az_attach parameter is deprecated. \ Use nova::cinder::cross_az_attach instead. Change-Id: I2a5b782ee453f59a754660af6a34bc0cdcd60b15 --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index dec6c2255..56a861d01 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -526,7 +526,7 @@ Use nova::compute::block_device_allocate_retries instead') Use nova::compute::block_device_allocate_retries_interval instead') } - if $cross_az_attach != unef { + if $cross_az_attach != undef { warning('The cross_az_attach parameter is deprecated. \ Use nova::cinder::cross_az_attach instead.') }