Merge pull request #146734 from VergeDX/hbase

nixos/hbase: Fix missing top-level in hbase-site.xml
This commit is contained in:
Aaron Andersen 2021-11-20 14:26:55 -05:00 committed by GitHub
commit 96ab4535d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,10 @@ let
configAttr));
configFile = pkgs.writeText "hbase-site.xml"
(buildProperty (defaultConfig // cfg.settings));
''<configuration>
${buildProperty (defaultConfig // cfg.settings)}
</configuration>
'';
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
mkdir -p $out