From d8ef5b0e6501692b8b767ebccddc936f496d77e8 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Wed, 31 Aug 2016 18:15:22 +0100 Subject: Fixed #27152 -- Supported comma delimiter in memcached LOCATION string. --- tests/cache/tests.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/cache') diff --git a/tests/cache/tests.py b/tests/cache/tests.py index f31b3e1957..04c523e853 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -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} -- cgit v1.3