We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ccf40b commit 0ec2bb9Copy full SHA for 0ec2bb9
ansible/roles/test/files/ptftests/sad_path.py
@@ -431,7 +431,7 @@ def verify_bgp_dut_state(self, state='Idle'):
431
if key not in ['v4', 'v6']:
432
continue
433
self.log.append('Verifying if the DUT side BGP peer %s is %s' % (self.neigh_bgps[vm][key], states))
434
- stdout, stderr, return_code = self.dut_connection.execCommand('show ip bgp neighbor %s' % self.neigh_bgps[vm][key])
+ stdout, stderr, return_code = self.dut_connection.execCommand('show ip bgp neighbors %s' % self.neigh_bgps[vm][key])
435
if return_code == 0:
436
for line in stdout:
437
if 'BGP state' in line:
0 commit comments