Fixed #27152 -- Supported comma delimiter in memcached LOCATION string.

This commit is contained in:
Ed Morley 2016-08-31 18:15:22 +01:00 committed by Tim Graham
parent c8058dc241
commit d8ef5b0e65
4 changed files with 14 additions and 3 deletions

View file

@ -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}