From c4b476cb3686b0c4bdad9ab7afe3c4f5c5bb4c57 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Tue, 27 Jan 2015 15:46:27 -0500 Subject: [PATCH] Swift: enable configurated middlewares In a previous commit, I enabled again the middleware configuration and forgot to actually enabling it... Let's enable it to have them work in Swift API. Change-Id: Ia67771f399a0e820a4a554fa7e5fda5f0efb8398 --- manifests/object/controller.pp | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/manifests/object/controller.pp b/manifests/object/controller.pp index 4e79edf7..16f5c6b0 100644 --- a/manifests/object/controller.pp +++ b/manifests/object/controller.pp @@ -100,15 +100,9 @@ class cloud::object::controller( proxy_local_net_ip => $api_eth, port => $ks_swift_internal_port, pipeline => [ - #'catch_errors', 'healthcheck', 'cache', 'bulk', 'ratelimit', - 'catch_errors', 'healthcheck', 'cache', 'ratelimit', - #'swift3', 's3token', 'container_quotas', 'account_quotas', 'tempurl', - 'swift3', 's3token', 'tempurl', - 'formpost', 'staticweb', - # TODO: (spredzy) re enable ceilometer middleware after the current bug as been fixed - # https://review.openstack.org/#/c/97702 - # 'ceilometer', - 'authtoken', 'keystone', + 'catch_errors', 'healthcheck', 'cache', 'bulk', 'ratelimit', + 'swift3', 's3token', 'container_quotas', 'account_quotas', 'tempurl', + 'formpost', 'staticweb', 'ceilometer', 'authtoken', 'keystone', 'proxy-logging', 'proxy-server'], account_autocreate => true, log_level => 'DEBUG',