mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests * Set http timeout from persistent_command_timeout * Tweak URL generation and provide URL on error * Push var_options to connection process * Don't wait forever if coming from persistent * Don't send the entire contents of variables to ansible-connection
This commit is contained in:
parent
231c3586bd
commit
483df13626
61 changed files with 46 additions and 390 deletions
|
@ -14,7 +14,6 @@
|
|||
snapshot_name: test_snapshot1
|
||||
description: Ansible
|
||||
save_snapshot_locally: true
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: create another snapshot
|
||||
nxos_snapshot:
|
||||
|
@ -26,7 +25,6 @@
|
|||
row_id: ROW_intf
|
||||
element_key1: intf-name
|
||||
save_snapshot_locally: true
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: compare snapshots
|
||||
nxos_snapshot:
|
||||
|
@ -36,7 +34,6 @@
|
|||
comparison_results_file: compare_snapshots.txt
|
||||
compare_option: summary
|
||||
path: '.'
|
||||
provider: "{{ connection }}"
|
||||
|
||||
- name: FAIL compare snapshots
|
||||
nxos_snapshot:
|
||||
|
@ -45,7 +42,6 @@
|
|||
snapshot2: test_snapshot2
|
||||
compare_option: summary
|
||||
path: '.'
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
ignore_errors: yes
|
||||
|
||||
|
@ -60,7 +56,6 @@
|
|||
- name: delete snapshot
|
||||
nxos_snapshot:
|
||||
action: delete_all
|
||||
provider: "{{ connection }}"
|
||||
ignore_errors: yes
|
||||
|
||||
- debug: msg="END connection={{ ansible_connection }} nxos_snapshot sanity test"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue