Fix memcache_servers line for swift-proxy

* Remove erroneous # after the final IP

Fixes #580
This commit is contained in:
Andy McCrae 2014-11-19 14:04:38 +00:00
parent 71068eafd4
commit ed4a13d2c7

View File

@ -315,7 +315,7 @@ use = egg:swift#memcache
# default to the value below. You can specify multiple servers separated with
# commas, as in: 10.1.2.3:11211,10.1.2.4:11211
memcache_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['container_address'] }}:{{ memcached_port|default('11211') }}{% if not loop.last %},{% endif %}{% endfor %}
#
# Sets how memcache values are serialized and deserialized:
# 0 = older, insecure pickle serialization
# 1 = json serialization but pickles can still be read (still insecure)