From f919ae079d2f1a33a3d2013aaf1f4cf4507ba564 Mon Sep 17 00:00:00 2001 From: npraveen35 Date: Thu, 20 Oct 2016 00:32:19 +0530 Subject: [PATCH] removed extra_volume_types for cinder.conf filtered the key in cinder.conf.j2 to elminate the extra_volume_types in cinder.conf Change-Id: I0dccd4f717154a72955bd7e8e7b432fe58c623f4 Closes-Bug: #1632812 --- templates/cinder.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/cinder.conf.j2 b/templates/cinder.conf.j2 index 1b0319ea..acc4f7c5 100644 --- a/templates/cinder.conf.j2 +++ b/templates/cinder.conf.j2 @@ -96,7 +96,7 @@ enabled_backends={% for backend in cinder_backends|dictsort %}{{ backend.0 }}{% # All given backend(s) {% for backend_section in cinder_backends|dictsort %} [{{ backend_section.0 }}] -{% for key, value in backend_section.1.items() %} +{% for key, value in backend_section.1.items() if key != 'extra_volume_types' %} {{ key }}={{ value }} {% endfor %} {% if cinder_nfs_client is defined %}