Skip to content

Commit

Permalink
fix checking check on flows when names are used
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jun 8, 2024
1 parent ec19901 commit 08a28b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/exabgp/configuration/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ def check_generation(neighbors):
# we do not decode non-transitive attributes
log.debug('skipping string check on update with non-transitive attribute(s)', 'parser')
skip = True
elif '=http' in str1r or '=ndl-aas' in str1r:
log.debug('skipping string check on update with named flow attribute(s)', 'parser')
skip = True
else:
log.debug('strings are different:', 'parser')
log.debug('[%s]' % (str1r), 'parser')
Expand Down

0 comments on commit 08a28b1

Please sign in to comment.