Commit b75055a1 authored by Cédric de Saint Martin's avatar Cédric de Saint Martin Committed by Kazuhiko Shiozaki

Temporary forbid activation of cache until it is properly tested.

parent 34ebdbe1
...@@ -132,13 +132,15 @@ class Recipe(BaseSlapRecipe): ...@@ -132,13 +132,15 @@ class Recipe(BaseSlapRecipe):
slave_dict[reference] = "%s%s/" % (scheme, domain) slave_dict[reference] = "%s%s/" % (scheme, domain)
# Check if we want varnish+stunnel cache. # Check if we want varnish+stunnel cache.
if enable_cache: #if enable_cache:
# XXX-Cedric : need to refactor to clean code? (to many variables) # # XXX-Cedric : need to refactor to clean code? (to many variables)
rewrite_rule = self.configureVarnishSlave( # rewrite_rule = self.configureVarnishSlave(
base_varnish_port, backend_url, reference, service_dict, domain) # base_varnish_port, backend_url, reference, service_dict, domain)
base_varnish_port += 2 # base_varnish_port += 2
else: #else:
rewrite_rule = "%s %s" % (domain, backend_url) # rewrite_rule = "%s %s" % (domain, backend_url)
# Temporary forbid activation of cache until it is properly tested
rewrite_rule = "%s %s" % (domain, backend_url)
# Finally, if successful, we add the rewrite rule to our list of rules # Finally, if successful, we add the rewrite rule to our list of rules
if rewrite_rule: if rewrite_rule:
......
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