Remove timeout from nxos tests (#65470)

This fixes the following:

  Unsupported parameters for (nxos_rollback) module: timeout unsupported

Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-12-05 10:39:35 -05:00 committed by GitHub
parent 95c85b395c
commit b975fd407d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 5 deletions

View file

@ -17,7 +17,6 @@
- name: save config
nxos_config:
save_when: always
timeout: 300
provider: "{{ connection }}"
register: result
@ -28,7 +27,6 @@
- name: save should always run
nxos_config:
save_when: always
timeout: 300
provider: "{{ connection }}"
register: result

View file

@ -200,6 +200,5 @@
feature: lacp
provider: "{{ connection }}"
state: disabled
timeout: 60
- debug: msg="END connection={{ ansible_connection }} nxos_linkagg sanity test"

View file

@ -16,13 +16,11 @@
nxos_rollback:
checkpoint_file: backup.cfg
provider: "{{ connection }}"
timeout: 300
- name: rollback to the previously created checkpoint file
nxos_rollback:
rollback_to: backup.cfg
provider: "{{ connection }}"
timeout: 300
- name: cleanup checkpoint file
nxos_config: *delete