diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2022-11-13 09:12:48 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2022-11-13 09:14:00 -0600 |
commit | 3d811617e6b10c822ba8ede6549f5c65d9d8cd1c (patch) | |
tree | 4b0a77e68e995e2f8c9e11f73b436065178a9e10 | |
parent | 03224e52d221e6e833072f3a58cc65593a4bf97f (diff) | |
download | spack-3d811617e6b10c822ba8ede6549f5c65d9d8cd1c.tar.gz spack-3d811617e6b10c822ba8ede6549f5c65d9d8cd1c.tar.bz2 spack-3d811617e6b10c822ba8ede6549f5c65d9d8cd1c.tar.xz spack-3d811617e6b10c822ba8ede6549f5c65d9d8cd1c.zip |
hotfix: ensure that schema is compatible with tutorial VM config
We added a hotfix to releases/v0.19 with a feature flag, but the flag
is incompatible with the config schema on `develop`.
- [x] Ensure schema is compatible on develop even though config option is unused.
-rw-r--r-- | lib/spack/spack/schema/concretizer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/schema/concretizer.py b/lib/spack/spack/schema/concretizer.py index e628519d56..30f73d7557 100644 --- a/lib/spack/spack/schema/concretizer.py +++ b/lib/spack/spack/schema/concretizer.py @@ -15,6 +15,7 @@ properties = { "additionalProperties": False, "properties": { "reuse": {"type": "boolean"}, + "enable_node_namespace": {"type": "boolean"}, "targets": { "type": "object", "properties": { |