From 326c7994c2b24ceb8fccb84a25924e805381b9df Mon Sep 17 00:00:00 2001 From: Kristi Nikolla Date: Tue, 2 Apr 2019 15:42:06 -0400 Subject: [PATCH] Fix sample config quota_services definition Code was expecting a dictionary but instead got a list, throwing a ValueError. Change-Id: I24afcebc861396bfa1ca261e5fe32c7caa4e64b0 --- conf/conf.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/conf/conf.yaml b/conf/conf.yaml index f7bef16..872b511 100644 --- a/conf/conf.yaml +++ b/conf/conf.yaml @@ -422,8 +422,9 @@ QUOTA_SIZES_ASC: # Services to check through the quotas for QUOTA_SERVICES: - - nova - - neutron - - cinder - # Additonal Quota Service - # - octavia + "*": + - nova + - neutron + - cinder + # Additonal Quota Service + # - octavia