Merge "Fix unicode key of azcache can't be stored to memcache"

This commit is contained in:
Jenkins
2013-09-02 11:31:22 +00:00
committed by Gerrit Code Review

View File

@@ -58,7 +58,7 @@ def reset_cache():
def _make_cache_key(host):
return "azcache-%s" % host
return "azcache-%s" % host.encode('utf-8')
def set_availability_zones(context, services):