diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2017-08-07 07:53:49 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-08-11 02:58:30 +0000 |
commit | a07bd708002a9c3d3c584f0d692deed1a758b517 (patch) | |
tree | bb82468f5430cf47d9eb305d826aa5eb2082fa00 /src/vpp-api/java/jvpp/gen/jvppgen/util.py | |
parent | e8bad978a107bf312e194ba488603f074351e29e (diff) |
Dedicated SW Interface Event
Change-Id: I06a10a4291e61aec3f1396d2514ed6fe3901897a
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'src/vpp-api/java/jvpp/gen/jvppgen/util.py')
-rw-r--r-- | src/vpp-api/java/jvpp/gen/jvppgen/util.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vpp-api/java/jvpp/gen/jvppgen/util.py b/src/vpp-api/java/jvpp/gen/jvppgen/util.py index 947fc31d48a..42394419737 100644 --- a/src/vpp-api/java/jvpp/gen/jvppgen/util.py +++ b/src/vpp-api/java/jvpp/gen/jvppgen/util.py @@ -161,7 +161,6 @@ unconventional_naming_rep_req = { # # FIXME no convention in the naming of events (notifications) in vpe.api notifications_message_suffixes = ("event", "counters") -notification_messages_reused = ["sw_interface_set_flags"] # messages that must be ignored. These messages are INSUFFICIENTLY marked as disabled in vpe.api # FIXME @@ -170,7 +169,7 @@ ignored_messages = [] def is_notification(name): """ Returns true if the structure is a notification regardless of its no other use """ - return is_just_notification(name) or name.lower() in notification_messages_reused + return is_just_notification(name) def is_just_notification(name): |