Browse Source

Fix 'currcachetype'

develop
Prabuddha Chakraborty 9 years ago
parent
commit
98efaa4cf0
  1. 2
      ee/cli/plugins/site.py

2
ee/cli/plugins/site.py

@ -1091,7 +1091,7 @@ class EESiteUpdateController(CementBaseController):
if pargs.letsencrypt:
setupLetsEncrypt(self, ee_domain)
if data['currcachetype'] != 'wpredis' and pargs.wpredis:
if pargs.wpredis and data['currcachetype'] != 'wpredis':
if (not pargs.experimental):
Log.info(self, "Redis is experimental feature and it may not"
" work with all plugins of your site.\nYou can "

Loading…
Cancel
Save