1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Change the transmit delay on junos_lldp test (#27750)

We are getting this error message:
"Advertisement-interval should be greater than or equal to four times the tx-delay".
Changing transmit delay to 2 meets that constraint.
This commit is contained in:
Ricardo Carrillo Cruz 2017-08-04 12:04:42 +02:00 committed by GitHub
parent a34ef12d73
commit a904f9c047

View file

@ -30,7 +30,7 @@
junos_lldp: junos_lldp:
interval: 10 interval: 10
hold_multiplier: 5 hold_multiplier: 5
transmit_delay: 30 transmit_delay: 2
state: present state: present
provider: "{{ netconf }}" provider: "{{ netconf }}"
register: result register: result