Skip to content

Commit

Permalink
fix decoding for open
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Jul 15, 2024
1 parent 9782521 commit ec2f2e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/exabgp/application/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def is_bgp(message):
def setargs(sub):
# fmt:off
sub.add_argument('-n', '--nlri', help='the data is only the NLRI', action='store_true')
sub.add_argument('-u', '--update', help='the data is update', action='store_true')
sub.add_argument('-u', '--update', help='the data is an update message (does nothing)', action='store_true')
sub.add_argument('-o', '--open', help='the data is an open message (does nothing)', action='store_true')
sub.add_argument('-d', '--debug', help='start the python debugger errors', action='store_true')
sub.add_argument('-p', '--pdb', help='fire the debugger on fault', action='store_true')
sub.add_argument('-c', '--configuration', help='configuration file(s)', type=str)
Expand Down

0 comments on commit ec2f2e7

Please sign in to comment.