From 1a8eefe09b034f8dda564e60b5b1905f53958aa2 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Wed, 15 Mar 2023 21:54:03 +0100 Subject: minify spec.json in buildcache (#36138) saves about 50% of data, which is significant for hundreds of thousands of spec.json files in our buildcaches. --- lib/spack/spack/binary_distribution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/spack/spack/binary_distribution.py b/lib/spack/spack/binary_distribution.py index 5ce7b62452..327e6ab434 100644 --- a/lib/spack/spack/binary_distribution.py +++ b/lib/spack/spack/binary_distribution.py @@ -1343,7 +1343,7 @@ def _build_tarball_in_stage_dir( spec_dict["buildinfo"] = buildinfo with open(specfile_path, "w") as outfile: - outfile.write(sjson.dump(spec_dict)) + outfile.write(json.dumps(spec_dict)) # sign the tarball and spec file with gpg if not unsigned: -- cgit v1.2.3-60-g2f50