mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.
This commit is contained in:
parent
c8058dc241
commit
d8ef5b0e65
4 changed files with 14 additions and 3 deletions
1
tests/cache/tests.py
vendored
1
tests/cache/tests.py
vendored
|
@ -1160,6 +1160,7 @@ class BaseMemcachedTests(BaseCacheTests):
|
|||
locations = [
|
||||
['server1.tld', 'server2:11211'],
|
||||
'server1.tld;server2:11211',
|
||||
'server1.tld,server2:11211',
|
||||
]
|
||||
for location in locations:
|
||||
params = {'BACKEND': self.base_params['BACKEND'], 'LOCATION': location}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue