Skip to content

Commit

Permalink
backport fix for #570
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jan 23, 2017
1 parent 60f438a commit 7e5d62e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Version 3.4.18
reported by: Ben Agricola
* Fix: Update RIB cache families on configuration reload
patch by: Brian Johnson
* Fix: Backport fix on SIGUSR2 (restarting process not needing to be)
patch by: Shawn Zhou
* Change: group-updates now generates one UPDATE per address family (and not one per NLRI for non IPv4)
patch by: Brian Johnson

Expand Down
2 changes: 1 addition & 1 deletion lib/exabgp/reactor/api/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def _start (self, process):

def start (self, restart=False):
for process in self.reactor.configuration.process:
if restart:
if restart and process in list(self._process):
self._terminate(process)
self._start(process)
for process in list(self._process):
Expand Down

0 comments on commit 7e5d62e

Please sign in to comment.