diff options
author | Michal Cmarada <mcmarada@cisco.com> | 2019-05-15 10:33:24 +0200 |
---|---|---|
committer | Michal Cmarada <mcmarada@cisco.com> | 2019-05-15 10:38:39 +0200 |
commit | d08757ccec1ebe919cc5572be52af5ac4e132321 (patch) | |
tree | 7083562e4fee2519e2e9dd0c77020c0e63d64b85 /java | |
parent | 57602dd2c361b9d72e4c4d36f6e41b1742f471b3 (diff) |
remove VNET_API_ERROR_IN_PROGRESS error handling
VNET_API_ERROR_IN_PROGRESS error was removed from VPP.
Removing handling for non-existing error code
Change-Id: Id4ece31643dbf7997c3a768cb3e2a6c7b035f0de
Signed-off-by: Michal Cmarada <mcmarada@cisco.com>
Diffstat (limited to 'java')
-rwxr-xr-x | java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py b/java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py index e223526..0e40a69 100755 --- a/java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py +++ b/java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py @@ -101,7 +101,4 @@ _ERR_HANDLER_TEMPLATE = Template(""" call_on_error("${name}", mp->context, mp->retval, plugin_main->callbackClass, plugin_main->callbackObject, callbackExceptionClass); return; } - if (mp->retval == VNET_API_ERROR_IN_PROGRESS) { - clib_warning("Result in progress"); - return; - }""") + """) |