From d08757ccec1ebe919cc5572be52af5ac4e132321 Mon Sep 17 00:00:00 2001 From: Michal Cmarada Date: Wed, 15 May 2019 10:33:24 +0200 Subject: 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 --- java/jvpp/gen/jvppgen/jni_msg_handlers_gen.py | 5 +---- 1 file changed, 1 insertion(+), 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; - }""") + """) -- cgit 1.2.3-korg