vyos.vyos icon indicating copy to clipboard operation
vyos.vyos copied to clipboard

Private argument spec validation methods no longer available in Ansible Core 2.11

Open samdoran opened this issue 3 years ago • 0 comments

SUMMARY

Argument spec validation has changed in Ansible Core 2.11. The following private method calls should be changed to use the public interface:

collections/vyos.vyos/plugins/modules/vyos_logging.py
259:            module._check_required_if(required_if, item)  # --> ansible.module_utils.common.validation.check_required_if()

collections/vyos.vyos/plugins/modules/vyos_static_route.py
241:            module._check_required_together(required_together, item)  # --> ansible.module_utils.common.validation.check_required_together()
ISSUE TYPE
  • Bug Report
COMPONENT NAME

vyos.vyos/plugins/modules/vyos_logging.py /vyos.vyos/plugins/modules/vyos_static_route.py

ANSIBLE VERSION
2.11

samdoran avatar Mar 24 '21 14:03 samdoran