mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-25 20:38:34 +00:00
Merge pull request #8190 from gromit1811/fix_topotest_pylint
tests: Fix topotest.py pylint errors
This commit is contained in:
commit
bb4bcaad9a
@ -1424,7 +1424,7 @@ class Router(Node):
|
|||||||
zebra_option = self.daemons_options["zebra"]
|
zebra_option = self.daemons_options["zebra"]
|
||||||
self.cmd(
|
self.cmd(
|
||||||
"ASAN_OPTIONS=log_path=zebra.asan {0} {1} --log file:zebra.log --log-level debug -s 90000000 -d > zebra.out 2> zebra.err".format(
|
"ASAN_OPTIONS=log_path=zebra.asan {0} {1} --log file:zebra.log --log-level debug -s 90000000 -d > zebra.out 2> zebra.err".format(
|
||||||
zebra_path, zebra_option, self.logdir, self.name
|
zebra_path, zebra_option
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.debug("{}: {} zebra started".format(self, self.routertype))
|
logger.debug("{}: {} zebra started".format(self, self.routertype))
|
||||||
@ -1439,7 +1439,7 @@ class Router(Node):
|
|||||||
staticd_option = self.daemons_options["staticd"]
|
staticd_option = self.daemons_options["staticd"]
|
||||||
self.cmd(
|
self.cmd(
|
||||||
"ASAN_OPTIONS=log_path=staticd.asan {0} {1} --log file:staticd.log --log-level debug -d > staticd.out 2> staticd.err".format(
|
"ASAN_OPTIONS=log_path=staticd.asan {0} {1} --log file:staticd.log --log-level debug -d > staticd.out 2> staticd.err".format(
|
||||||
staticd_path, staticd_option, self.logdir, self.name
|
staticd_path, staticd_option
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
logger.debug("{}: {} staticd started".format(self, self.routertype))
|
logger.debug("{}: {} staticd started".format(self, self.routertype))
|
||||||
@ -1831,8 +1831,8 @@ class LinuxRouter(Router):
|
|||||||
class FreeBSDRouter(Router):
|
class FreeBSDRouter(Router):
|
||||||
"A FreeBSD Router Node with IPv4/IPv6 forwarding enabled."
|
"A FreeBSD Router Node with IPv4/IPv6 forwarding enabled."
|
||||||
|
|
||||||
def __init__(eslf, name, **params):
|
def __init__(self, name, **params):
|
||||||
Router.__init__(Self, name, **params)
|
Router.__init__(self, name, **params)
|
||||||
|
|
||||||
|
|
||||||
class LegacySwitch(OVSSwitch):
|
class LegacySwitch(OVSSwitch):
|
||||||
|
Loading…
Reference in New Issue
Block a user