From 14f303d7d1cb8fa6a2b1d945fdfd373a645e60d2 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 16 Jul 2014 02:22:55 -0700 Subject: [PATCH] Don't hard set infra-files in swift wsgi conf The container for os-loganalyze to pull from should be configurable but there was a bug in the wsgi.conf where we tried to hardset the container and make it configurable at the same time. Just make it configurable so that the value in the config is correct. Change-Id: I56de3ed87d6c27ac1723ffa2812e53cac31b5f40 --- .../openstack_project/templates/os-loganalyze-wsgi.conf.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openstack_project/templates/os-loganalyze-wsgi.conf.erb b/modules/openstack_project/templates/os-loganalyze-wsgi.conf.erb index f74fac5aaa..a91767081e 100644 --- a/modules/openstack_project/templates/os-loganalyze-wsgi.conf.erb +++ b/modules/openstack_project/templates/os-loganalyze-wsgi.conf.erb @@ -6,5 +6,5 @@ password=<%= swift_key %> tenant=<%= swift_tenant_name %> region=<%= swift_region_name %> chunk_size=64 -container=infra-files=<%= swift_default_container %> -<% end -%> \ No newline at end of file +container=<%= swift_default_container %> +<% end -%>