From 2f34318ceb902b64b2cfe8957c0143846f905386 Mon Sep 17 00:00:00 2001 From: Chris Van Heuveln Date: Wed, 6 Nov 2019 05:12:12 -0500 Subject: [PATCH] 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. --- test/integration/targets/prepare_nxos_tests/tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/test/integration/targets/prepare_nxos_tests/tasks/main.yml b/test/integration/targets/prepare_nxos_tests/tasks/main.yml index ff915871870..05c253009aa 100644 --- a/test/integration/targets/prepare_nxos_tests/tasks/main.yml +++ b/test/integration/targets/prepare_nxos_tests/tasks/main.yml @@ -31,7 +31,6 @@ - name: "Collect interface list" nxos_command: commands: ['show interface brief | json'] - timeout: 60 connection: network_cli register: intout