mirror of https://github.com/apache/druid.git
fix invalid cache keys
This commit is contained in:
parent
01dc787261
commit
c6e641e819
|
@ -131,6 +131,6 @@ public class MemcachedCacheBroker implements CacheBroker
|
||||||
}
|
}
|
||||||
|
|
||||||
private String computeKey(String identifier, byte[] key) {
|
private String computeKey(String identifier, byte[] key) {
|
||||||
return identifier + Base64.encodeBytes(key);
|
return identifier + Base64.encodeBytes(key, Base64.DONT_BREAK_LINES);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue