diff options
| author | Paul Berry <paul@puppetlabs.com> | 2010-11-29 11:56:40 -0800 |
|---|---|---|
| committer | Paul Berry <paul@puppetlabs.com> | 2010-11-29 12:08:26 -0800 |
| commit | 71ecad9904c8c48c023e90e5fbea5b26b180c9cf (patch) | |
| tree | 7109f1605e4dceca9e48ef58b41bda559ba4901d /lib/puppet/node | |
| parent | 14f8160674628340ccfd79baeb84f66cf1e0398a (diff) | |
| download | puppet-71ecad9904c8c48c023e90e5fbea5b26b180c9cf.tar.gz puppet-71ecad9904c8c48c023e90e5fbea5b26b180c9cf.tar.xz puppet-71ecad9904c8c48c023e90e5fbea5b26b180c9cf.zip | |
Maint: Refactor code to use <class>.indirection.<method>
Replaced uses of the find, search, destroy, and expire methods on
model classes with direct calls to the indirection objects. Also
removed the old methods that delegated to the indirection object.
Diffstat (limited to 'lib/puppet/node')
| -rwxr-xr-x | lib/puppet/node/facts.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/node/facts.rb b/lib/puppet/node/facts.rb index d84d54113..612dc3239 100755 --- a/lib/puppet/node/facts.rb +++ b/lib/puppet/node/facts.rb @@ -16,7 +16,7 @@ class Puppet::Node::Facts # We want to expire any cached nodes if the facts are saved. module NodeExpirer def save(key, instance) - Puppet::Node.expire(instance.name) + Puppet::Node.indirection.expire(instance.name) super end end |
