fix invalid cache keys

This commit is contained in:
xvrl 2012-12-04 12:06:19 -08:00
parent 01dc787261
commit c6e641e819
1 changed files with 1 additions and 1 deletions

View File

@ -131,6 +131,6 @@ public class MemcachedCacheBroker implements CacheBroker
}
private String computeKey(String identifier, byte[] key) {
return identifier + Base64.encodeBytes(key);
return identifier + Base64.encodeBytes(key, Base64.DONT_BREAK_LINES);
}
}