Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rework cache_manager logic about cached facts and groups #2763

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/facter/framework/core/cache_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ def read_fact(searched_fact, fact_group)
unless searched_fact.file
return unless valid_format_version?(searched_fact, data, fact_group)

delete_cache(fact_group) unless data.keys.grep(/#{searched_fact.name}/).any?
# data.fetch(searched_fact.name) { delete_cache(fact_group) }
unless data.keys.grep(/#{searched_fact.name}/).any?
@log.debug("Fact '#{searched_fact.name}' missing from group '#{fact_group}', skipping cache removal.")
end
end

@log.debug("loading cached values for #{searched_fact.name} facts")
Expand Down
Loading