HomePhorge

(PUP-3500) Avoid cacheing environment values when handling setting hooks
e134843b44d6Unpublished

Unpublished Commit ยท Learn More

Repository Importing: This repository is still importing.

Description

(PUP-3500) Avoid cacheing environment values when handling setting hooks

Environment in parse_config is being used to ensure that settings in the
current run_mode's environment are checked for hooks, and to handle
hooks that are simply on_write. In this latter case, the code looks up
the value of the setting from all available elements of the setting's
search_path including the current environment layer.

But if directory environments are in use, their environment settings
cannot be looked up at this early point in settings initialization (we
have no environment loaders), and the consequence is that we end up with
a ChainedValues instance cached in the Settings @values[:env][:runmode]
that does not have a section for :env. This then blocks resolution of
the real environment settings at a later date.

The fix in this patch is to construct a temporary ChainedValues instance
for the lookup rather than invoking value(), thus avoiding the cacheing.

Since none of the documented environment settings has a hook, we were
very tempted to yank out the environment handling entirely, but this
would leave us with yet more odd behavior if a hook was added to an
environment setting in the 3.7.x series for some unknowable reason, and
it was then set in a legacy environment block.

  • the question of how to handle Setting hooks for directory environment

settings is open in PUP-3507

Paired-with: Britt Gresham <britt@puppetlabs.com>

Details

Event Timeline

Josh Partlow <joshua.partlow@puppetlabs.com> committed rPUe134843b44d6: (PUP-3500) Avoid cacheing environment values when handling setting hooks (authored by Josh Partlow <joshua.partlow@puppetlabs.com>).Oct 23 2014, 8:07 PM