diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-07-04 12:25:10 -0400 |
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2020-07-04 12:25:10 -0400 |
| commit | cb3e512d97080d54b616842c7c9a7dcbaf82555a (patch) | |
| tree | dd6542bab22c6f6990e1a4146eaaf3da8c69e617 /tests/topotests/lib/topotest.py | |
| parent | 807c31d5822a7af5a8d07a0a72f73df67fd970ed (diff) | |
tests,zebra: fix more startup topotest issues
Use the right list of daemons to avoid trying to start zebra twice.
Change a zebra log message to INFO level to avoid stderr check
failure.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'tests/topotests/lib/topotest.py')
| -rw-r--r-- | tests/topotests/lib/topotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index b19c9063e3..b65acad23e 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -1242,7 +1242,7 @@ class Router(Node): ) # Now start all the other daemons - for daemon in self.daemons: + for daemon in daemons_list: # Skip disabled daemons and zebra if self.daemons[daemon] == 0: continue |
