nixos/hbase: use jre8 instead of latest.

This commit is contained in:
Vanilla 2021-11-16 22:15:46 +08:00
parent 1b2a061c87
commit 79dc6a5629
No known key found for this signature in database
GPG key ID: 3750028ED04FA42E

View file

@ -103,7 +103,8 @@ in {
wantedBy = [ "multi-user.target" ];
environment = {
JAVA_HOME = "${pkgs.jre}";
# JRE 15 removed option `UseConcMarkSweepGC` which is needed.
JAVA_HOME = "${pkgs.jre8}";
HBASE_LOG_DIR = cfg.logDir;
};