Update lib/vmpooler/providers/base.rb

Co-authored-by: Gene Liverman <gene.liverman+06301990@puppet.com>
This commit is contained in:
Samuel 2021-12-08 12:56:22 -06:00 committed by Samuel Beaulieu
parent b85455e4e8
commit ea86c2645a
No known key found for this signature in database
GPG key ID: 12030F74136D0F34
3 changed files with 8 additions and 11 deletions

View file

@ -243,9 +243,9 @@ module Vmpooler
# DEPRECATED if a provider does not implement the new method, it will hit this base class method
# and return a deprecation message
def purge_unconfigured_folders(_deprecated, _deprecated2, whitelist)
def purge_unconfigured_folders(_deprecated, _deprecated2, allowlist)
logger.log('s', '[!] purge_unconfigured_folders was renamed to purge_unconfigured_resources, please update your provider implementation')
purge_unconfigured_resources(whitelist)
purge_unconfigured_resources(allowlist)
end
end
end