diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-04-03 10:10:07 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-04-05 22:15:19 +0900 |
commit | a5b81ba381af74d872fb9fea0a4581262241aaae (patch) | |
tree | d5b54c57728f51a697e11bf1fd320777209753d2 /test/lib/exabgp.py | |
parent | f94eb1fe9230f614a8fa8f5a40329cc43bdd173f (diff) |
server: add missing broadcastBests when dropping peer's routes
fix regression introduced by e6682c52ba3e09c4111bc94c938909cdcacd7d72
also add a test to check the behavior.
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/lib/exabgp.py')
-rw-r--r-- | test/lib/exabgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/exabgp.py b/test/lib/exabgp.py index 5de3d65b..22eaf51f 100644 --- a/test/lib/exabgp.py +++ b/test/lib/exabgp.py @@ -32,7 +32,7 @@ class ExaBGPContainer(BGPContainer): cmd << 'env exabgp.log.destination={0}/exabgpd.log'.format(self.SHARED_VOLUME) cmd << "exabgp.tcp.bind='0.0.0.0' exabgp.tcp.port=179" cmd << './exabgp/sbin/exabgp {0}/exabgpd.conf'.format(self.SHARED_VOLUME) - self.local(str(cmd), flag='-d') + self.local(str(cmd), detach=True) def _update_exabgp(self): if self.exabgp_path == '': |