mirror of
https://github.com/ansible/awx.git
synced 2026-03-22 11:25:08 -02:30
Consistent naming scheme; memcached_host -> memcached_hostname
environment.sh uses hostname for everything, and both environment and credentials provide a default of 'memcached', so this should also be one less variable to care about.
This commit is contained in:
@@ -26,7 +26,7 @@ CHANNEL_LAYERS = {
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
||||
'LOCATION': '{}:{}'.format("{{ memcached_host }}", "{{ memcached_port }}")
|
||||
'LOCATION': '{}:{}'.format("{{ memcached_hostname }}", "{{ memcached_port }}")
|
||||
},
|
||||
'ephemeral': {
|
||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||||
|
||||
Reference in New Issue
Block a user