diff options
-rw-r--r-- | changelogs/fragments/vyos_facts_remove_warning.yaml | 3 | ||||
-rw-r--r-- | plugins/modules/vyos_facts.py | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/changelogs/fragments/vyos_facts_remove_warning.yaml b/changelogs/fragments/vyos_facts_remove_warning.yaml new file mode 100644 index 00000000..5d4a75e8 --- /dev/null +++ b/changelogs/fragments/vyos_facts_remove_warning.yaml @@ -0,0 +1,3 @@ +--- +trivial: + - "`vyos_facts` - Remove warning related to default value for gather_subset" diff --git a/plugins/modules/vyos_facts.py b/plugins/modules/vyos_facts.py index 951dbe9b..8ff06096 100644 --- a/plugins/modules/vyos_facts.py +++ b/plugins/modules/vyos_facts.py @@ -165,10 +165,6 @@ def main(): ) warnings = [] - if module.params["gather_subset"] == "!config": - warnings.append( - "default value for `gather_subset` will be changed to `min` from `!config` v2.11 onwards" - ) ansible_facts = {} if module.params.get("available_network_resources"): |