Commit 149b24be authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

Fix iterable call in cache_listen

parent 90884c9e
...@@ -443,7 +443,7 @@ class Recipe(BaseSlapRecipe): ...@@ -443,7 +443,7 @@ class Recipe(BaseSlapRecipe):
apache_conf["listen_cache"] = "\n".join([ apache_conf["listen_cache"] = "\n".join([
"Listen %s:%s" % (ip, port) "Listen %s:%s" % (ip, port)
for port in (cached_port) for port in (cached_port,)
for ip in ip_list for ip in ip_list
]) ])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment