Remove `timeout` parameter from `prepare_nxos_tests` (#63963)

The error below occurs when attempting to run `ansible-playbook` with nxos regression tests.

```
fatal: [dt-n9k5-1.cisco.com]: FAILED! => {
    "changed": false,
    "invocation": {
        "module_args": {
            "commands": [
                "show interface brief | json"
            ],
            "timeout": 60
        }
    },
    "msg": "Unsupported parameters for (nxos_command) module: timeout Supported parameters include: commands, interval, match, provider, retries, wait_for"
}
```

This error appears to be a result of https://github.com/ansible/ansible/pull/62625, but that has not been verified.
pull/64496/head
Chris Van Heuveln 5 years ago committed by Trishna Guha
parent 3b6681f889
commit 2f34318ceb

@ -31,7 +31,6 @@
- name: "Collect interface list"
nxos_command:
commands: ['show interface brief | json']
timeout: 60
connection: network_cli
register: intout

Loading…
Cancel
Save