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

fix: facts being gathered unnecessarily #106

Merged

Commits on Jul 13, 2023

  1. fix: facts being gathered unnecessarily

    Cause: The comparison of the present facts with the required facts is
    being done on unsorted lists.
    
    Consequence: The comparison may fail if the only difference is the
    order.  Facts are gathered unnecessarily.
    
    Fix: Use `difference` which works no matter what the order is.  Ensure
    that the fact gathering subsets used are the absolute minimum required.
    
    Result: The role gathers only the facts it requires, and does
    not unnecessarily gather facts.
    
    Signed-off-by: Rich Megginson <rmeggins@redhat.com>
    richm committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    63aa2bf View commit details
    Browse the repository at this point in the history