Disable greenwave prod cache until we can figure this networking issue out.
This commit is contained in:
parent
8baaa95989
commit
c9ed2f924f
1 changed files with 8 additions and 0 deletions
|
@ -26,12 +26,16 @@ data:
|
|||
CORS_URL = 'https://bodhi.fedoraproject.org'
|
||||
{% endif %}
|
||||
CACHE = {
|
||||
{% if env == 'staging' %}
|
||||
'backend': 'dogpile.cache.memcached',
|
||||
'expiration_time': 3600, # 3600 is 1 hour
|
||||
'arguments': {
|
||||
'url': 'greenwave-memcached:11211',
|
||||
'distributed_lock': True
|
||||
}
|
||||
{% else %}
|
||||
'backend': 'dogpile.cache.null',
|
||||
{% endif %}
|
||||
}
|
||||
fedora.yaml: |-
|
||||
--- !Policy
|
||||
|
@ -266,12 +270,16 @@ data:
|
|||
},
|
||||
},
|
||||
greenwave_cache={
|
||||
{% if env == 'staging' %}
|
||||
'backend': 'dogpile.cache.memcached',
|
||||
'expiration_time': 3600, # 3600 is 1 hour
|
||||
'arguments': {
|
||||
'url': 'greenwave-memcached:11211',
|
||||
'distributed_lock': True
|
||||
}
|
||||
{% else %}
|
||||
'backend': 'dogpile.cache.null',
|
||||
{% endif %}
|
||||
},
|
||||
{% if env == 'staging' %}
|
||||
environment='stg',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue