Skip to content

Commit

Permalink
Amend HBASE-26353 Support loadable dictionaries in hbase-compression-…
Browse files Browse the repository at this point in the history
…zstd (apache#3787)

Resolve a new spotbugs warning in DictionaryCache

Signed-off-by: Andrew Purtell <apache.org>
  • Loading branch information
apurtell committed Oct 29, 2021
1 parent e0eaec6 commit ff11f11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class DictionaryCache {
public static final String RESOURCE_SCHEME = "resource://";

private static final Logger LOG = LoggerFactory.getLogger(DictionaryCache.class);
private static LoadingCache<String, byte[]> CACHE;
private static volatile LoadingCache<String, byte[]> CACHE;

private DictionaryCache() { }

Expand Down

0 comments on commit ff11f11

Please sign in to comment.