Skip to content

Commit

Permalink
correct fix for the bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Sep 27, 2013
1 parent 3477c5e commit ea49dcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Version explained:
minor : increase on risk of code breakage during a major release
bug : increase on bug or incremental changes

Version 3.2.15
* Fix: a wrong fix introducing a bug in 3.2.14

Version 3.2.14
* Fix: do not leak route between peers
* Fix: restore group level static group for all peers thereafter
Expand Down
2 changes: 1 addition & 1 deletion lib/exabgp/configuration/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2559,7 +2559,7 @@ def decode (self,update):
for number in range(len(update.nlris)):
change = Change(update.nlris[number],update.attributes)
self.logger.parser('decoded %s %s %s' % (decoding,change.nlri.action,change.extensive()))
self.logger.parser('update json %s' % JSON('1.0').update(n,update))
self.logger.parser('update json %s' % JSON('1.0').update(str(n.peer_address),update))
import sys
sys.exit(0)

Expand Down
2 changes: 1 addition & 1 deletion lib/exabgp/reactor/api/encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _neighbor (self,neighbor,content):
'"neighbor": { ' \
'"ip": "%s", ' \
'%s' \
'} '% (str(neighbor.peer_address),content)
'} '% (neighbor,content)

def _bmp (self,neighbor,content):
return \
Expand Down

0 comments on commit ea49dcb

Please sign in to comment.