From 8a7077052abf2dd79d8235e939836b7e3fe58132 Mon Sep 17 00:00:00 2001 From: horsitis <31382712+horsitis@users.noreply.github.com> Date: Wed, 17 Mar 2021 11:50:50 +0200 Subject: [PATCH] Update juniper.py Fix error "traceroute: wait must be >1 sec" --- hyperglass/models/commands/juniper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperglass/models/commands/juniper.py b/hyperglass/models/commands/juniper.py index c761f4b..41478b7 100644 --- a/hyperglass/models/commands/juniper.py +++ b/hyperglass/models/commands/juniper.py @@ -74,7 +74,7 @@ _structured = CommandGroup( bgp_aspath='show route protocol bgp table {vrf}.inet6.0 aspath-regex "{target}" detail | display xml', bgp_community="show route protocol bgp table {vrf}.inet6.0 community {target} detail | display xml", ping="ping inet6 routing-instance {vrf} {target} count 5 source {source}", - traceroute="traceroute inet6 routing-instance {vrf} {target} wait 1 source {source}", + traceroute="traceroute inet6 routing-instance {vrf} {target} wait 2 source {source}", ), )