File: issue_1079__wait_for_connection_timeout.yml

package info (click to toggle)
python-mitogen 0.3.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,824 kB
  • sloc: python: 24,965; sh: 144; makefile: 74; perl: 19; ansic: 18
file content (22 lines) | stat: -rw-r--r-- 514 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- name: regression/issue_1079__wait_for_connection_timeout.yml
  hosts: issue1079
  gather_facts: false
  tasks:
    - name: Wait for connection at start of play
      wait_for_connection:
        timeout: 5
  tags:
    - issue_1079
    - wait_for_connection

- hosts: issue1079
  gather_facts: false
  tasks:
    - meta: reset_connection
    - name: Wait for connection after reset_connection
      wait_for_connection:
        timeout: 5
  tags:
    - issue_1079
    - reset_connection
    - wait_for_connection