From: Gorka Eguileor Date: Thu, 3 Mar 2016 13:00:34 +0000 (+0100) Subject: Fix oslo.service config generation X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ffaa4f55e46b5b2619e7291af6163f6b14125ff4;p=openstack-build%2Fcinder-build.git Fix oslo.service config generation Cinder generation configuration sample does not contain any of oslo.service configuration options. This is because we are not using the right namespace when calling oslo-config-generator since oslo.service is not a valid entrypoint as mentioned in the documentation: https://github.com/openstack/oslo.service/blob/master/doc/source/usage.rst#using-osloservice-with-oslo-config-generator This patch fixes this by using the right namespaces. Closes-Bug: #1552689 Change-Id: I8365daec0d3b161d3c07f229d221cf004edb6662 --- diff --git a/cinder/config/cinder-config-generator.conf b/cinder/config/cinder-config-generator.conf index 14d9e1903..18c3a29b1 100644 --- a/cinder/config/cinder-config-generator.conf +++ b/cinder/config/cinder-config-generator.conf @@ -15,7 +15,10 @@ namespace = oslo.policy namespace = oslo.reports namespace = oslo.rootwrap namespace = oslo.serialization -namespace = oslo.service +namespace = oslo.service.periodic_task +namespace = oslo.service.service +namespace = oslo.service.sslutils +namespace = oslo.service.wsgi namespace = oslo.utils namespace = oslo.versionedobjects namespace = oslo.vmware