mirror of
https://github.com/ansible/awx.git
synced 2026-01-24 07:51:23 -03:30
Merge pull request #5340 from eb4x/memcached_hostname
Consistent naming scheme; memcached_host -> memcached_hostname Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
commit
ad3d89afd3
@ -16,6 +16,6 @@ postgresql_image: "postgres:{{postgresql_version}}"
|
||||
|
||||
memcached_image: "memcached"
|
||||
memcached_version: "alpine"
|
||||
memcached_host: "memcached"
|
||||
memcached_hostname: "memcached"
|
||||
memcached_port: "11211"
|
||||
|
||||
|
||||
@ -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',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user