concretizer cache: disable due to broken cleanup (#49470)

Co-authored-by: Harmen Stoppels <me@harmenstoppels.nl>
This commit is contained in:
John W. Parent 2025-04-01 09:38:56 -04:00 committed by GitHub
parent fe9275a5d4
commit 93220f706e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1190,7 +1190,7 @@ def solve(self, setup, specs, reuse=None, output=None, control=None, allow_depre
problem_repr += "\n" + f.read() problem_repr += "\n" + f.read()
result = None result = None
conc_cache_enabled = spack.config.get("config:concretization_cache:enable", True) conc_cache_enabled = spack.config.get("config:concretization_cache:enable", False)
if conc_cache_enabled: if conc_cache_enabled:
result, concretization_stats = CONC_CACHE.fetch(problem_repr) result, concretization_stats = CONC_CACHE.fetch(problem_repr)