[ovs-dev] [PATCH 11/30] ovn-nbctl: Don't die in nbctl_ls_del().

Jakub Sitnicki jkbs at redhat.com
Sat Jul 7 11:09:45 UTC 2018


Propagate the error via the context instead.

Signed-off-by: Jakub Sitnicki <jkbs at redhat.com>
---
 ovn/utilities/ovn-nbctl.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ovn/utilities/ovn-nbctl.c b/ovn/utilities/ovn-nbctl.c
index d331c93c0..c0e068c38 100644
--- a/ovn/utilities/ovn-nbctl.c
+++ b/ovn/utilities/ovn-nbctl.c
@@ -889,7 +889,8 @@ nbctl_ls_del(struct ctl_context *ctx)
 
     char *error = ls_by_name_or_uuid(ctx, id, must_exist, &ls);
     if (error) {
-        ctl_fatal("%s", error);
+        ctx->error = error;
+        return;
     }
     if (!ls) {
         return;
-- 
2.14.4



More information about the dev mailing list